Skip to main content

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 control
  • id - (optional) the id of a control, auto-generated if not set
  • html - (optional) the HTML content of a control
  • css - (optional) adds style classes to a control string
  • disabled - (optional) defines whether a control is enabled (false) or disabled (true)
  • height - (optional) the height of a control
  • hidden - (optional) defines whether a control is hidden
  • padding - (optional) sets padding between a cell and a border of a control
  • width - (optional) the width of a control

Example

Related article: Container