styledRadioButton
inline fun styledRadioButton(text: String? = null, vararg styleClass: String, id: String? = null): RadioButton
Create a styled RadioButton.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun NodeContainer.styledRadioButton(text: String? = null, vararg styleClass: String, id: String? = null): RadioButton
inline fun ToggleButtonContainer.styledRadioButton(text: String? = null, vararg styleClass: String, id: String? = null): RadioButton
Add a styled RadioButton to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun styledRadioButton(text: String? = null, vararg styleClass: String, id: String? = null, configuration: RadioButton.() -> Unit): RadioButton
Create a styled RadioButton 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.styledRadioButton(text: String? = null, vararg styleClass: String, id: String? = null, configuration: RadioButton.() -> Unit): RadioButton
inline fun ToggleButtonContainer.styledRadioButton(text: String? = null, vararg styleClass: String, id: String? = null, configuration: RadioButton.() -> Unit): RadioButton
Add a styled RadioButton 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.