Support Article
Section not refreshing when selecting multiple check boxes
SA-29119
Summary
Section is not refreshing when selecting multiple check boxes very fast.
Error Messages
Not applicable
Steps to Reproduce
1.Configure to update a section on checkbox selection.
2.Try to select the checkboxes first.
Root Cause
An issue in the custom application code or rules.
Resolution
Add the below script in a section and place it in the section containing checkboxes:
<script>
function disable()
{
$('.checkbox.chkBxCtl').attr("disabled",true);
}
function enable()
{
$('.checkbox.chkBxCtl').attr("disabled",false);
}
</script>
Now on click of checkbox:
1. To disable the checkbox selection, till all the events on "Click" action are completed, call below function by running a script:
function disable
2. To enable the checkboxes, call below function by running a script after all other events on "Click" action of checkbox:
function enable
Published October 21, 2016 - Updated October 8, 2020
Have a question? Get answers now.
Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.