Skip to content

Switch

The Switch form element is used for a toggle switch row.

Example

On and Off Values

The value is set to onValue when checked. The value is set to offValue when unChecked.

Example

Kotlin

switch<String>(1) {
   value = "Yes"
   onValue = "Yes"
   offValue = "No"
}

Java

List<BaseFormElement<?>> elements = new ArrayList<>();
FormSwitchElement<String> switchElement = new FormSwitchElement<>(1);
switchElement.setValue("Yes");
switchElement.setOnValue("Yes");
switchElement.setOffValue("No");
elements.add(switchElement);