styledCheckBox
inline fun styledCheckBox(text: String? = null, vararg styleClass: String, id: String? = null): CheckBox
Create a styled CheckBox.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun NodeContainer.styledCheckBox(text: String? = null, vararg styleClass: String, id: String? = null): CheckBox
Add a styled CheckBox to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun styledCheckBox(text: String? = null, vararg styleClass: String, id: String? = null, configuration: CheckBox.() -> Unit): CheckBox
Create a styled CheckBox with configuration block.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.
inline fun NodeContainer.styledCheckBox(text: String? = null, vararg styleClass: String, id: String? = null, configuration: CheckBox.() -> Unit): CheckBox
Add a styled CheckBox with configuration block to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.