defines options for a set of radiobuttons
webix.ui({
view:"radio",
label:"Branch",
value:1,
options:[
{ id:1, value:"Master" }, //the initially selected item
{ id:2, value:"Branch" }
]
});
Options can be as well enumerated in the array of values:
{view:"radio", options:["Master", "Branch"]}
Back to top