Support Article
Quick selection of radio button is not working
SA-27327
Summary
User added Row Refresh action on change of radio button and it would render another section to display. On quick selection of multiple 'no'(radio) buttons some rows are displaying the required section and some rows are not.
Error Messages
Not Applicable
Steps to Reproduce
- Configure checkboxes inside a repeat grid and perform some actions on click.
- Continuously try to click on the radio buttons.
Root Cause
A software use or operation error that before the action for the first click is finished the operator is triggering the other events continuously.
Resolution
Apply the following changes:
function ChangeCursor(event){
$("body").css("cursor", "wait");
document.getElementById("HARNESS_CONTENT").style.pointerEvents = 'none';
}
function ChangeCursorDefault(event){
$("body").css("cursor", "default");
document.getElementById("HARNESS_CONTENT").style.pointerEvents = 'auto';
}
Configure the first function ChangeCursor then section refresh after which call ChangeCursorDefault() on change of the radio buttons.
Published October 6, 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.