Documentation

options

defines options for a set of radiobuttons

array options;

Example

webix.ui({ 
    view:"radio", 
    label:"Branch", 
    value:1, 
    options:[
        {  id:1, value:"Master" }, //the initially selected item
        {  id:2, value:"Branch" }
    ]
});

See also

Details

Options can be as well enumerated in the array of values:

{view:"radio", options:["Master", "Branch"]}
Back to top