sets the height of the control group
var form = new dhx.Form("form_container", {
css: "dhx_widget--bordered",
height: "400px", // height for rows rows: [
{
height: "200px", // height for cols css: "dhx_layout-cell--bordered",
cols: [{
type: "checkbox",
label: "start",
name: "align",
labelInline: true,
value: "start",
checked: true
},
{
type: "checkbox",
label: "center",
name: "align",
labelInline: true,
value: "center"
}]
}
]
});
added in v6.4
Back to top