SR-A76729 · Issue 252834
Page Messages not cleared by Tree grid
Resolved in Pega Version 7.2.2
If a Tree grid was configured to run a local action on click of a node and error messages were set by page-Set-Messages/property-set-messages is set, it was observed that these messages were reset or cleared on click on any node in the tree. This was due to the local action being executed which in turn called ProcessAction, and the Messages were reset in step 2. To prevent this unexpected behavior, the pzpega_ui_grid JS file has been updated.
SR-A94024 · Issue 264561
Resolved RTE spellcheck freeze with Microsoft Internet Explorer
Resolved in Pega Version 7.2.2
If spellcheck was invoked on an RTE file in a modal dialog while using Microsoft Internet Explorer , the reload harness was not being correctly triggered and the UI would freeze. This was due to the body event listeners not working in Microsoft Internet Explorer , and code has been added to remove the listener from the document body if the browser is Microsoft Internet Explorer .
SR-B1043 · Issue 270870
Resolved RTE with Microsoft Internet Explorer textarea update
Resolved in Pega Version 7.2.2
If spellcheck was invoked on an RTE text area when using Microsoft Internet Explorer , the next time text was entered and saved the new text was not preserved in the text area. This has been resolved with an added null check.
SR-A17941 · Issue 246609
Resolved maximized RTE tab blanking
Resolved in Pega Version 7.2.2
If the Rich Text Editor was opened and maximized in a modal window tab using a dynamic container, navigating away and returning to the tab resulted in the RTE tab being blank. This was an issue with the resize function relating to Quirks mode, and a check has been added to resolve the problem.
SR-A88892 · Issue 266454
Restored nested sections show repeating grid header
Resolved in Pega Version 7.2.2
In a section that has repeating grids configured, rule check-out and check-in caused the repeat grid headers and cells to disappear in Designer Studio. Analysis showed that when a rule was deleted from a section with nested layouts, only the properties which had values were committed to the database. On restoring the rule, only committed properties were re-created on the section XML, leaving the XML incomplete and generating an error and layout rendering failure. To fix this, the pzpega_ud_gridlayout_structure JS has been updated to handle the non-existence of empty nodes and initialize them.
SR-A99412 · Issue 270055
Spacebar 'Select a Form Field' shortcut fixed for JAWS
Resolved in Pega Version 7.2.2
In an application that uses JAWS to navigate the form fields, the instruction from JAWS was "to activate tab page press spacebar", but engaging the spacebar key did not activate the field/tab as expected. This was traced to a missing condition for the spacebar to handle the event firing when spacebar (keycode 32) is pressed to generate a click on the selected tab from the "select a form field" dialog of JAWS. This condition has been added.
SR-A100432 · Issue 268484
Dirty form handling improved for Mobile harness
Resolved in Pega Version 7.2.2
In certain configurations, the Mobile app was entering an infinite loop due to an error in the harness handling for a dirty form. This has been fixed.
SR-A92086 · Issue 264769
Mashup Gadget considers DSS for access group redirectGuests
Resolved in Pega Version 7.2.2
In Mashup, the Gadget was unable to redirect to the corresponding access group based on the application name, instead always redirecting to the default access group. In order to address this immediate problem, a change has been made to add the redirectGuests attribute to the mashup html generation based on DSS setting. This will not get the access group hash only in cases when: - operating in the non-tenant environment and - the mashup configuration div claims to have set the DSS for redirectGuests as being set to false. The code itself does not verify whether the run time value of the DSS is properly set or not.
SR-A92086 · Issue 260095
Mashup Gadget considers DSS for access group redirectGuests
Resolved in Pega Version 7.2.2
In Mashup, the Gadget was unable to redirect to the corresponding access group based on the application name, instead always redirecting to the default access group. In order to address this immediate problem, a change has been made to add the redirectGuests attribute to the mashup html generation based on DSS setting. This will not get the access group hash only in cases when: - operating in the non-tenant environment and - the mashup configuration div claims to have set the DSS for redirectGuests as being set to false. The code itself does not verify whether the run time value of the DSS is properly set or not.
SR-A87054 · Issue 255434
Click delay removed in mobile events
Resolved in Pega Version 7.2.2
In order to improve performance on mobile devices, the click handler has been moved to touchend event to remove the 300ms delay used by browsers to differentiate click/double-click.