INC-156802 · Issue 620674
Handling added for special characters for track changes
Resolved in Pega Version 8.5.3
After entering inverted commas ["] inside a text box configured with post value and 'refresh this section' actions, focusing out of it caused the UI to freeze. A JSON parse issue was seen in the browser console, which was traced to the domelement API not having handling for special characters in the HTML code. This has been resolved.
INC-156826 · Issue 625439
Logic updated for adding new child/sibling to hierarchical paginated tree/grid
Resolved in Pega Version 8.5.3
When using a hierarchical table with pagination enabled, navigating to the last page and attempting to add a new child or sibling produced unexpected results. Navigating to the last row, selecting child, and clicking 'add sibling' caused a new row to be added. Adding a child caused the child elements to be added on top instead of at the bottom. This was a missed use case for adding a child/sibling when using a paginated tree/tree grid, and has been resolved.
INC-156912 · Issue 627488
Updated accessibility for Rich Text Editor navigation in a modal dialog
Resolved in Pega Version 8.5.3
When navigating through a Rich Text Editor while in a modal dialog, it was expected that once focus was brought to the Rich Text Editor Toolbar (Alt+F10), pressing Escape on the keyboard would bring the focus back into the Rich Text Editor text area and the cursor would appear. However, when this Rich Text Editor was within a modal dialog, pressing Escape closed the modal dialog entirely. This has been resolved by updating the code to stop the Escape key event propagation from the Rich Text Editor toolbar when in a modal dialog.
INC-157041 · Issue 626312
Performance improvements for email listener processing
Resolved in Pega Version 8.5.3
Email processing was taking an excessive amount of time when a very large number of email listeners were running. Performance has been improved by updating the implementation of pzGetChannelByName to use obj-browse instead instead of looping through channels.
INC-157119 · Issue 621745
Rule-Message instances added for guardrail warnings
Resolved in Pega Version 8.5.3
Log errors were seen when saving a rule in Dev Studio that generated a guardrail warning from the pzValidateFieldValueReference function. This was related to work done when the function "addwarning" was deprecated in favor of pxAddGuardrailMessage, and has been resolved by adding Rule-Message instances for pxFieldValueMaxLength, pxFieldValueConsecutiveSpaces, and pxFieldValueQuotesNotAllowed.
INC-157353 · Issue 624011
Handling added for autoclose of assignment in tabbed MDC
Resolved in Pega Version 8.5.3
After configuring an Ajax container in a section using tabs and max doc defined as 8 with 'doClose' set after processing has been completed, finishing the assignment caused the work item tab to stop working. Checking the console showed a script error was being thrown. Investigation showed that when the doClose action was triggered and tried to find the activeTabs in MDC, the target element being fired was null. This has been resolved by adding a condition for the doClose to handle the combination of autoclose and tabbed MDC that will close the current Ajax container div before proceeding.
INC-157699 · Issue 624596
Customer 360 Tabs load in Firefox browser
Resolved in Pega Version 8.5.3
After upgrade from v8.1 to v8.4, the layout group's tab content was not loading as expected in the customer 360 view when using the Firefox browser. Investigation showed this was due to the �role� attribute being removed from the header div by the on-hover showSmart tip action configured on the dynamic layout tabs. This has been resolved by updating the system to use data-role along with the role tab.
INC-157737 · Issue 625691
Added ability to support multiple domains for users
Resolved in Pega Version 8.5.3
Previously, the DSS setting MultiTenant/CrossTenant/DomainName supported just a single domain. In order to support multiple domains for internal and external users, an enhancement has been added to pzSetCrossTenantDomain which will allow reading the domain value from pxRequestor.pxReqServer instead of from the DSS setting.
INC-157795 · Issue 624672
DateTime dropdown control will retain entry on validation error
Resolved in Pega Version 8.5.3
For a Date Time control with display mode as dropdownlist, choosing just a month or a day from the dropdown and refreshing the section resulted in an invalid date validation and the field being set to the current date. Choosing the date from the calendar icon or filling in all three drop downs worked as expected. This has been resolved by updating the datetime control so that if a dropdown mode with property as type DATE has a validation error on refresh action, the user-entered data will show in the dropdown instead of the current date/time.
INC-157957 · Issue 624208
Autocomplete correctly sets null values in clipboard
Resolved in Pega Version 8.5.3
When using an autocomplete control with display configuration "In a List", if a property value was null then the value of the property in the clipboard was set as �undefined�. This was due to the pzGetACData activity returning only properties with values and excluding empty properties, causing setProperty to use "undefined" when a property value was not found in the response. To resolve this, a condition has been added to the processAdditionalProperties method to replace an undefined value with an empty string.