getValue

returns the current value of the control

string getValue();
stringthe current value of the control

Example

webix.ui({
  view:"colorselect",
  value: "#CC9D90",
  id: "myCS"
});
 
$$("myCS").getValue(); // returns "#CC9D90"

See also
Back to top