SR-D71756 · Issue 533549
Thread Cleanup error resolved
Resolved in Pega Version 8.2.6
After upgrade, intermittent exception errors were being generated by the FreeClipboard activity when switching between applications. This was traced to specific use-case issues with Thread Cleanup, and has been resolved.
SR-D71944 · Issue 543730
Resolved data page loop in templatized UI
Resolved in Pega Version 8.2.6
A Layout Group was configured with six dropdowns sourced to Parameterized datapages with "disable automatic refresh" unchecked; every next dropdown depended upon the previous property, and the previous property was sourced as parameter, and so on until last dropdown. When the value in the dropdowns changed, the section kept refreshing and the portal became unresponsive. This was traced to the combination of a Datapage as the source to the dropdown with "disable automatic refresh" unchecked and expression evaluation as well.Templatized UI has 'visible when' expressions for all the properties inside the top level page. Changing the first one fired refresh on the next one, and the next one's refresh fired the other drop down refresh until it became recursive. This did not occur in non-templatized UI as it does not have expression IDs and there are no recursive calls. This issue has been corrected by modifying how the temporary mapping is populated by the reloadCells API in Expression Evaluator to prevent unwanted cell refreshes.
SR-D72121 · Issue 536409
Currency Control accepts value on PostValue action set
Resolved in Pega Version 8.2.6
Currency control in the section was sourced by a decimal property. Irrespective of the value entered, the validation triggered the message "entered value is not a decimal value" and did not allow user to proceed. Investigation showed than on getting the server response for post value action, the target element was updated with the response value when it should be skipped for currency control. To resolve this, an additional check for attribute: data-formatting has been added to the textInput control so when action PostValue is configured on Currency control and there is a change of value, the system will skip replacing the value with formatted value.
SR-D73260 · Issue 536890
Multiselect control support for offline-enabled iOS app
Resolved in Pega Version 8.2.6
After a custom mobile application for iOS was built and was running on iPad for an offline-enabled user adding a multiselect control into a section as part a flow caused the screen to hang when a save or submit was performed. This has been resolved by enhancing support for offline multiselect submit with the addition of pzpega_ui_template_multiselect_capsule to offline static bundle.
SR-D73510 · Issue 538663
Cross-site scripting filtering for ActionStringID
Resolved in Pega Version 8.2.6
Cross-site scripting filter logic has been added to the ActionStringID function.
SR-D73847 · Issue 536162
Added exception handler for URL decode error
Resolved in Pega Version 8.2.6
After logging in to Pega Deployment Manager, clicking Users -> People in the left navigation panel resulted ArrayIndexOutOfBoundsException. This was traced to an incomplete trailing escape (%) pattern and has been resolved by adding checks and exception handling for incomplete data from the browser.
SR-D74057 · Issue 540060
Updated aria handling for Dynamic Layout Group 'Accordion'
Resolved in Pega Version 8.2.6
The Dynamic Layout Group display type 'Accordion' was not getting initialized properly on the browser developer inspector. This was traced to the aria-selected attribute set to always be true, and has been resolved by adding logic to set and unset aria- selected only on the active tab. When the tab is not active, then aria-selected will be false.
SR-D74165 · Issue 537513
DateRange clear button localized
Resolved in Pega Version 8.2.6
Localization has been added to the 'clear' button in DateRange.
SR-D74704 · Issue 535941
Section and navigation rule localization added
Resolved in Pega Version 8.2.6
Localization has been added for sections and navigation rules that include some of the out-of-the-box rules like Locked and Get help.
SR-D75205 · Issue 543566
Refresh with DT or pre-activity added to dirty pop up check
Resolved in Pega Version 8.2.6
Given a button which when clicked launched a data transform to set a few properties on the UI followed by a section refresh, a dirty warning popup did not appear when closing the work object even though the property changed via the refresh section. This has been resolved with an additional condition in the dirty pop up check to handle a refresh section using a DT or pre-activity.