Documentation

getValue

returns the current value of the control

number getValue();

Returns

numberthe current value of the control

See also

Example

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

Details

Value of the control may be:

Back to top