INC-139095 · Issue 596506
Portal loads for Simplified Chinese locale in IE
Resolved in Pega Version 8.6
When using Microsoft Internet Explorer, the portal would not load when using the Simplified Chinese locale. This was caused by Internet Explorer rendering the locale as 'zh-CN-#Hans' instead of the expected 'zh-cn'. This has been resolved by adding a check to remove the "#" in the locale string to avoid a malformed URL.
INC-139156 · Issue 592149
Pasting image lands in correct location
Resolved in Pega Version 8.6
When pasting an image in a user story or issue, the image did not land where the cursor was placed in the contents of the issue or story. This was traced to the insert element handling for RTE, and has been resolved.
INC-139260 · Issue 592219
Handling added for third party form library
Resolved in Pega Version 8.6
When using a third party library which created a form tag, the wrong form was used on submit in the Ajax container. This has been resolved by updating the pzpega_ui_doc_submit file submitInner method to handle this use case.
INC-139327 · Issue 595698
GetImmutablePropertyInfo updated to return pyType for page group properties
Resolved in Pega Version 8.6
Dates were are not matching in the UI and Apply filter section in the date column of Table layout filters. The system calculates pyType properties on save and passes the complete reference of the property to the getImmutablePropertyInfo API, but this resulted in the API ignoring the subscript if a nested page group property was passed. To resolve this, updates have been added to invoke the API getImmutablePropertyInfo so the property name and class name are passed during runtime in order to return pyType for page group properties.
INC-139328 · Issue 588585
Corrected Excel table picture being included with Rich Text Editor paste
Resolved in Pega Version 8.6
As an unintended consequence of code added to allow pasting or dragging and dropping an image for upload using Rich Text Editor and the CK Editor, any copied content from Excel also added a table picture to the last cell as part of the pasted data. This has been resolved by updating the system to recognize content copied from Excel and prevent uploading of the image.
INC-139531 · Issue 594426
AppendToPage List preserves parameter page
Resolved in Pega Version 8.6
After upgrade, when AppendToPageList is called on Step3, Java was removing the parameter page. This was an unintended side effect of security updates, and has been resolved.
INC-139624 · Issue 595987
Validation error messages persist appropriately
Resolved in Pega Version 8.6
Whenever there was a Validation check on a flow action Validation Tab and Post Processing Activity, the error message appeared on the screen momentarily and disappeared. Intermittently, the validation error would stay on the screen after appearing a second time. This was traced to the refresh action happening in the wrong context due to the refresh action of the Ajax container being called twice, once in postacrenderac and another time in the harness unload function.The case error DOM was present in the markup, but because of the refresh in the harness unload, the error message was removed from the DOM. This has been resolved by changing the refresh call from onHarnessUnload callback to postAcRender callback. Logic has also been added to prevent refresh when error messages are present.
INC-139645 · Issue 597499
Flowaction button responds for grid modal window
Resolved in Pega Version 8.6
The submit and cancel buttons were not working on first click for a modal window opened from a grid. Investigation found that this happened when the grid was shown on launching a harness but not if the grid was set to show otherwise in tabs, and was not seen when launching modal windows normally either from tabs or from harness (the pzModalTemplate or pyModalTemplate). This was traced to the system passing the target as a window to getTrackerChanges from triggerEvaluateClientConditions, which caused getTrackerChanges to be called on every window action. To resolve this, the event has been changed to 'focus' so that the method gets called only on focus.
INC-139739 · Issue 598901
Cross site scripting protection update
Resolved in Pega Version 8.6
Cross site scripting protections have been updated for labels.
INC-139849 · Issue 598126
Sorting icon visible for table in Cosmos on Chrome
Resolved in Pega Version 8.6
Tables were not showing any sort icon / indicator in the column header when using the Cosmos Theme in Chrome. This was only occurring in apps created with the Cosmos theme, and was caused by the sort icon for a non-optimized table using display flex, resulting in the position of the icon being displaced. This was a missed use case of having a non-optimized table in Cosmos, and has been resolved by removing the non-optimized-related CSS code.