SR-A13528 · Issue 229419
Fixed dropdown harness action focus
Resolved in Pega Version 7.2.1
If a pyActionArea section was dropped inside a harness with dropdown mode, the focus was going to the first focusable element in the harness when the dropdown was used to switch among local actions. This has been fixed.
SR-A13589 · Issue 227936
Datapage result usable as value in OpenURL
Resolved in Pega Version 7.2.1
When a Link was configured with an onclick event that called an 'Open URL in Window' action, giving the 'Alternate Domain URL' field a datapage result as a value resulted in an error. This was caused by findClassOfPageReference RUF not having handling for cases where Page.pxResults() was specified in the pages and classes. Support has been added such that if the specified index is not specified already, then check whether it is specified without index in pages and classes.
SR-A13590 · Issue 239611
Updated handling for Cyrillic usernames
Resolved in Pega Version 7.2.1
On systems where Windows user name was created in Cyrillic (ex C:\Users\?????? ????), generated word documents would be empty due to the characters in the directory name not being properly handled. The system now contains modified Silverlight code that will read the registry keys using RegOpenKeyEx, RegQueryValueEx and RegCloseKey functions of advapi32.dll as opposed to previously used RegRead function of Wscript.shell. These new registry functions are Unicode-aware. The Silverlight Prerequisites installer has also been modified to include the latest certificate.
SR-A13674 · Issue 227843
repeat grid with progressive pagination error fixed
Resolved in Pega Version 7.2.1
A JS error occurred when using repeat grid with progressive pagination due to the system attempting to set the style attribute for a null element. The APIs have been updated for this nested grid scenario and to allow grid initialization to take care of assigning the proper index.
SR-A13691 · Issue 231105
Corrected race condition in rapid LoadDataPage requests
Resolved in Pega Version 7.2.1
If the the same Requester-level data page was rapidly invalidated and reloaded by means of "Load-DataPage", a race condition between the background requestor and main requestor caused some pending requests to be overwritten by new incoming requests before the previous load request were serviced. As a result, information was lost. This has been resolved by ensuring every queued job's ID is different and thereby never conflicts.
SR-A13729 · Issue 231588
Embedded Valuelist/valuegroup count included in manifest file
Resolved in Pega Version 7.2.1
The pxTotalInsertsCount for Embedded ValueList /ValueGroup Property was missing in the Manifest file while the pxTotalInsertsCount for Toplevel ValueList /ValueGroup Property was present. The Embedded Valuelist/valuegroup property count will now be included as expected.
SR-A13779 · Issue 227492
Fixed repeat grid sorting for multiple pages
Resolved in Pega Version 7.2.1
During pagination, the grid was not retaining the sorting state, and sorting was broken from the second page onwards. The SortClipboardData activity for both pagination and sorting action has been updated to correct this.
SR-A13784 · Issue 235357
RedirectAndRun URL built with CSRF token
Resolved in Pega Version 7.2.1
Using RedirectAndRun with CSRF enabled and redirecting to a different thread resulted in a missing CSRF token because the URL was constructed before the initialization of the thread object. The sendHttpRedirect() API has been modified to construct the URL once the thread has been initialized.
SR-A13796 · Issue 229066
Error messages scroll while using WAI
Resolved in Pega Version 7.2.1
After moving all controls into dynamic layouts, error messages were not scrolling with the screen when using PegaWAI (accessibility). To correct this, the error msg span position will be set absolute from its parent.
SR-A13815 · Issue 227490
Events working for repeat grid with Top.<ListProperty> source
Resolved in Pega Version 7.2.1
Single click or double click events on a grid record were not working if Top. was used as source pagelist property. This was due to missing support for "Top.[pagelist]" in grids, which has been added.