defines options for a set of radio buttons
webix.ui({
view:"radio",
label:"Branch",
value:1,
options:[
{ "id":1, "value":"Master" }, // the initially selected item
{ "id":2, "value":"Branch" }
]
});
Options can be set as:
{
view:"radio",
options:["Master", "Branch"]
}