Simple Checkbox

Instruction

  1. Check/Uncheck the checkboxes and have a look at the current value.
  2. Get it from our Plug-In Repository!

Note 1: The value of the page item will also be set if the checkbox is unchecked. Not like the regular checkbox which will just contain a value if checked and which returns NULL if unchecked. Defining a Simple Checkbox is also a lot easier than using the regular checkbox.

Note 2: To programmatically modify a checkbox in the browser, you can use the "Set Value" dynamic action with the "Checked Value" (for example Y) to set it or with N to uncheck it. In JavaScript you would use $s('PAGE_ITEM_NAME', 'Y') and $s('PAGE_ITEM_NAME', 'N').