getValue

returns the current value of the control

number getValue();
numberthe current value of the control

Example

webix.ui({
    view:"counter",
    id:"counter1"
    label:"First age"
});
$$('counter1').setValue(30);
..
$$('counter1').getValue();// -> 30

Details

The returned value of the control may be:

See also
Back to top