Documentation

elementsConfig

settings, which will be applied to all nested inputs

hash elementsConfig;

Example

webix.ui({
    view:"form",
    elements:[
        {view:"text", label:"First Name"},
        {view:"text", label:"Last Name"}
    ],
    elementsConfig:{
        labelPosition:"top"
    }
});

Back to top