type

allows setting the inner height of items

object|string type;

Example

const propertysheet_1 = {
  view:"property",  id:"sets", width:300,
  elements:[
    { label:"Layout", type:"label"},
    { label:"Width", type:"text", id:"width", value: 250},
    { label:"Height", type:"text", id:"height", value: 500},
    { label:"Color", type:"color", id:"color", value: "red"},
  ],
  type:{          height:70,   } };
 
webix.ui({
  cols:[        
    propertysheet_1,
    {}
  ]
});

Back to top