Container properties
Usage
{
type: "container",
name?: string,
id?: string,
html?: HTMLElement | string,
css?: string,
disabled?: boolean,
height?: string | number | "content", // "content" by default
hidden?: boolean,
padding?: string | number,
width?: string | number | "content", // "content" by default
}
Description
type
- (required) the type of a control, set it to "container"name
- (optional) the name of a controlid
- (optional) the id of a control, auto-generated if not sethtml
- (optional) the HTML content of a controlcss
- (optional) adds style classes to a control stringdisabled
- (optional) defines whether a control is enabled (false) or disabled (true)height
- (optional) the height of a controlhidden
- (optional) defines whether a control is hiddenpadding
- (optional) sets padding between a cell and a border of a controlwidth
- (optional) the width of a control
Example
Related article: Container