SR-A90551 · Issue 258592
Support restored for date fields with double quotes
Resolved in Pega Version 7.2.2
After upgrade, a date field format using "double quotes" generated a test compilation error and it was not possible to save the section. This format was previously supported and remained in the documentation as an option, but the function to trim the quotes was left out of the code by error. This has been fixed.
SR-A99742 · Issue 266172
Refresh section works on first click
Resolved in Pega Version 7.2.2
After upgrade, a refresh section was not invoking when a radio button was clicked for the first time. A second click generated the refresh as expected. This was due to a JS error caused by an invalid method of accessing the first element, and has been fixed.
SR-A94142 · Issue 263214
Check added to handle submitModal button use
Resolved in Pega Version 7.2.2
After upgrade, running a script under the actions tab of a button was not working as expected though the standalone run did work. This has been fixed with the addition of a check to differentiate between a pzModalButton and a normal button.
SR-A64729 · Issue 250894
Column header alignment fixed for grids
Resolved in Pega Version 7.2.2
An alignment markup difference between tree-grids and grids led to different behaviors in the CSS when a new column was added as the first column to the Pega provided out-of-the-box TreeGrid Layout. This has been fixed.
SR-A91630 · Issue 259687
AutoComplete returns search results with special characters
Resolved in Pega Version 7.2.2
An auto complete configured with Data source as an Activity was not working with some special characters( "*", ")"), , causing the search results to not be displayed even though the results were fetched from DB and exist in the Clipboard. This was due to a regex failure caused by some of the characters not being properly escaped, and has been fixed.
SR-A102083 · Issue 270531
Enter events work consistently across browsers
Resolved in Pega Version 7.2.2
An enter event configured on a text box to launch a local action worked as expected in Google Chrome, but did not work in Microsoft Internet Explorer and Firefox. This was caused by a difference between the browsers in the handling used for keydown events, and has been corrected for consistent results.
SR-A76725 · Issue 253222
pxOperatorImage click loads menu item
Resolved in Pega Version 7.2.2
An error occurred when trying to load the Menu item on click of the pxOperatorImage control in the Portal. This was traced to missing logic needed to include the menu JavaScript bundle from the dynamic layout action generation and has been fixed.
SR-A100106 · Issue 266744
Include from clipboard validation corrected
Resolved in Pega Version 7.2.2
An error was generated when attempting to save a section included via clipboard page due to the wrong page class being sent for the clipboard section. This has been fixed by setting the GetPageClass RUF to pick the proper page name while sending it for validation.
SR-A96679 · Issue 265658
Date/Time fixed for calendar icon selection using es_MX
Resolved in Pega Version 7.2.2
An the hour value was disappearing when attempting to select a date from the calendar icon when the locale was set to 'es_MX'. when we try to select a date from the calendar icon. To resolve this, the logic used when certain date formats are applied has been modified to avoid a race condition with the appendToDate function of calender_Util.js
SR-A91238 · Issue 259751
Radio button clicks improved for groups in repeat grids
Resolved in Pega Version 7.2.2
Clicking on radio button labels in a repeat grid layout resulted in a selection from the first row while clicking exactly on a radio button icon worked as expected. This was due to the IDs generated for radio buttons not being unique when a section has a radio group and that section is included inside a repeat grid. To fix this, radio button generation has been changed to generate unique IDs for the radio buttons and corresponding labels.