getValue

возвращает текущее значение контрола

number getValue();
numberthe current value of the control

Example

webix.ui({
  padding:20,
  width:400,
  rows:[
    { type:"section", template:"Settings"},
    { view: "switch", id: "myswitch", value: true, label:"Sound"},
  ]
});
 
$$("myswitch").getValue(); // returns 1

Details

Возвращаемое значение контрола может быть:

See also
Наверх