Support Article
Updated section does not display when button is clicked
Summary
In the Internet Explorer browser, when the user enables a checkbox and selects a radio button before the checkbox action is completed, the section refreshes and the checkbox value is posted to the Clipboard. This occurs intermittently.
Error Messages
Not Applicable
Steps to Reproduce
- Configure a checkbox with a Refresh Section action configured onChange.
- Configure a radio button. The section is updated incorrectly.
Root Cause
Issue with user operation and Internet Explorer browser.
Resolution
Perform the following local-change:
- Mask the screen while the current UI action is in-progress. Include the below script in the UserWorkForm.
<script>
function showMask() {
var mask = document.createElement("div");
mask.setAttribute("id", "_custom_mask");
var harness = document.getElementById("PEGA_HARNESS");
var height = harness ? (harness.offsetHeight + "px") : "100%";
mask.setAttribute("style", "background:grey;opacity:0.4;position: absolute;z-index: 10000;width: 100%;height: " + height + ";top:0;bottom:0;left:0;right:0;");
document.body.appendChild(mask);
}function hideMask() {
var mask = document.getElementById("_custom_mask");
setTimeout(function() {
document.body.removeChild(mask);
},0);
}
</script> - In the onChange action of the checkbox, perform the following,
a. Confgure a Run Script at the start of actions and invoke the showMask function (this displays the Busy Indicator).
b. Configure another Run Script at the end of actions and invoke the hideMask function (this displays the Busy Indicator).
- Click the next UI element when the UI is unmasked.
Published May 30, 2020 - 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.