Quote from
luishp on October 23, 2025, 1:32 pm
@phil78 as you are entering HTML code directly, just turn this:
<input class="bauble_input" id="bauble_check" name="bauble" type="checkbox">
Into this:
<input ng-model="$root.checkboxvalue" class="bauble_input" id="bauble_check" name="bauble" type="checkbox">
This way the variable [checkboxvalue] will store the checkbox value (true or false)
Check the attached sample.
Regards.
@phil78 as you are entering HTML code directly, just turn this:
<input class="bauble_input" id="bauble_check" name="bauble" type="checkbox">
Into this:
<input ng-model="$root.checkboxvalue" class="bauble_input" id="bauble_check" name="bauble" type="checkbox">
This way the variable [checkboxvalue] will store the checkbox value (true or false)
Check the attached sample.
Regards.
Uploaded files:- You need to login to have access to uploads.