returns the current value of the control
string | the current value of the control |
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"
The method collects values from all the fields of a multitext control and aggregates them into a string with a comma separator.
The separator can be redefined with the help of a separator property.
To get the value of the basic field only, use the getValueHere method.
Value of the control may be: