gets the HTML element related to the component
HTMLInputElement | the component HTML element |
webix.ui({
container:"box",
view:"form",
elements:[
{ view:"text", id:"f1", label:"Username", value: "John" },
{ view:"text", id:"f2", label:"Password", type:"password" },
{ view:"button", id:"b1", value:"Login", css:"webix_primary" }
]
});
$$("f1").getInputNode();
//-> <input type="text" value="John" style="...">
Dimensions you get are equal to library defaults defined for a standard button. They can be as well set in JS object:
{ view:"button", id:"b1", value:"Login", css:"webix_primary", width: 300, height: 50 }