Documentation

getValue

returns the current value of the control

string getValue();

Returns

stringthe current value of the control

See also

Example

webix.ui({
    view:"form", 
    elements:[
        { view:"button", id:"b1", value:"Edit", type:"form" },
        { view:"button", id:"b2", value:"Back", type:"form" }
    ]
});
 
$$('b1').getValue(); //returns "b1"

Details

Value of the control may be:

Back to top