styledRadioButton

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.


fun NodeManager.styledRadioButton(text: String? = null, vararg styleClass: String, id: String? = null): RadioButton
fun ToggleButtonManager.styledRadioButton(text: String? = null, vararg styleClass: String, id: String? = null): RadioButton

Add a styled RadioButton to this manager.

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 NodeManager.styledRadioButton(text: String? = null, vararg styleClass: String, id: String? = null, configuration: RadioButton.() -> Unit): RadioButton
inline fun ToggleButtonManager.styledRadioButton(text: String? = null, vararg styleClass: String, id: String? = null, configuration: RadioButton.() -> Unit): RadioButton

Add a styled RadioButton with configuration block to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.