SR-D19083 · Issue 490401
Autocomplete list resets to top of scroll if selected data is deleted from the control
Resolved in Pega Version 8.2.3
If an autocomplete on Screen did not initially have any input, pressing the down arrow showed the popover data with the scrollbar on the top. Scrolling down and selecting an item from the autocomplete suggestions and then tabbing out closed the popover. If the data was then deleted from the control and the down arrow was pressed again, the popover suggestion showed the data in the last scrolled position instead of restarting from the top as expected. Investigation showed that when autocomplete used a list configuration, the popover div was not being updated if the data was deleted from the control. This has been corrected.
SR-D19177 · Issue 492339
Mashup refined to not trigger resize from popup
Resolved in Pega Version 8.2.3
The parent window was being refreshed when an action was performed on the child window or the child window was resized from the mashup script. This has been resolved by altering the logic to avoid triggering resize from popups in a mashup scenario.
SR-D19602 · Issue 489988
GetDirections API enhanced to send exact current location to Google Maps
Resolved in Pega Version 8.2.3
The GetDirections API was not fetching the exact current location for Google Maps. In order to enhance precision, selecting the current location will use the navigation.geolocation.getCurrentPosition API to get the latitude and longitude position and send it as a saddr parameter to Google Maps.
SR-D19821 · Issue 490065
Resolved UI styling for layout group with 'run visibility on client'
Resolved in Pega Version 8.2.3
UI styling for Layout Group(Tab) was not working, resulting in the border/background color not being saved for layout groups. This was traced to a scenario where the same property was present in both the "Header" and "Tabs" settings of the layout group and "run visibility on client" was checked for the header, enabling the property at runtime. This has been resolved by modifying pyHeader in "Embed-Skin-Component-LayoutGroup" to uncheck "Run visibility condition on client".
SR-D20791 · Issue 489022
Support added for section completion of nested page list/groups in DX API
Resolved in Pega Version 8.2.3
When using DX API and submitting a screen from the front end which was in an embedded section, "Pega_API_001" errors appeared. An enhancement has now been added to support completing the fields in an embedded section by updating the system to handle nested page lists/groups and updates to "newRow" for nested page lists/groups.
SR-D20950 · Issue 489654
Removed unnecessary commit from case creation with exception
Resolved in Pega Version 8.2.3
If a case had an exception when it was being created using the case creation API, it was sent to the problem flow functionality which performed a commit (All defer items) in the same interaction after it it performed a commit with error handling. This resulted in an Exception 3273 message. To resolve this, the unnecessary commit has been removed.
SR-D22601 · Issue 499897
Fixed PEGA0069 alerts with Weblogic
Resolved in Pega Version 8.2.3
When Pega platform was deployed in a Weblogic application server, Alert PEGA0069 was not generated due to the cookie parser failing to parse what was found to be an incorrect Pega-Perf cookie value. The Pega-Perf cookie value has been corrected by removing quote characters surrounding it.
SR-D8790 · Issue 487285
Corrected thread cleanup logic for doUIAction in WorkCover
Resolved in Pega Version 8.2.3
When accessing a case from the worklist or opening the case from worklist and refreshing the case by pressing F5, clicking Approve resulted in a java.lang.NullPointerException error. Investigation showed that the "pyWorkCover" page that the section was running on was being removed in the top navigation portal / SDM portal as part of the thread cleanup logic in doUIAction. This has been corrected.
SR-D9482 · Issue 484740
Small delay added to autocomplete control
Resolved in Pega Version 8.2.3
When using an autocomplete control with minimum character search set to 4, every keystroke after 4 characters triggered a REST request to populate the control. This had a negative impact on performance. In order to smooth the request process, the timing logic has been updated to allow for a very small delay on the immediate event handler.
SR-D21332 · Issue 494516
Handling added for exceptions related to IE11 grid cleanup
Resolved in Pega Version 8.2.3
Numerous exceptions generated from IE11 related to pzPega_ui_grid were traced to a browser difference in timing logic related to grid cleanup. This has been resolved by adding a check to determine whether the grid is inside a defer-loaded section.