INC-230576 · Issue 741541
Data transform works with encryption in Pega Mashup
Resolved in Pega Version 8.8
Data transform was not getting called in case of Mashup when "Use Encryption" was ON. This was traced to the data transform not being triggered correctly in this scenario, and has been resolved.
INC-230579 · Issue 742038
Inline error message consistent for currency field
Resolved in Pega Version 8.8
After update, an inline validation error triggered on a currency field inside of a text box disappeared when the page was scrolled back to the top. This was traced to the display_removeErrorImage function being called from validation_ValidateFieldOnEvent due to an “onBlur” event, and has been resolved by removing the onblur for a number of decimal type to prevent clearing the validation messages at field level on tab out.
INC-230718 · Issue 737341
Number control decimal formatting triggered on tabout
Resolved in Pega Version 8.8
When using the pxNumber control in a section, decimal formatting for input of fewer than 4 digits was not executing unless a post call to the server was triggered. This has been resolved by adding a condition check to format value when there is input of length greater than 0.
INC-230738 · Issue 741462
Fixed cursor jumping issue for date only input
Resolved in Pega Version 8.8
When selecting a date from the calendar and keeping the cursor in the date part (MM/DD/YYYY) , trying to clear it caused the cursor to immediately jump to the end. This has been corrected.
INC-231076 · Issue 738162
AddMessage function shows error on UI
Resolved in Pega Version 8.8
After updating from Pega 8.1 to 8.6, an addmessage function which previously displayed an edit validate rule error message was not working. This was an issue with textinput inside a grid, and has been resolved by adding a style to input text when it has a symbol left aligned and giving the error icon a z-index to show the message when the symbol is configured.
INC-231145 · Issue 734364
Security improvement for Currency control
Resolved in Pega Version 8.8
A potential cross-site scripting issue related to readonly formatting for the Currency control has been resolved.
INC-231255 · Issue 743958
ToolTip update on repeating dynamic layers pagination options removed
Resolved in Pega Version 8.8
The repeating dynamic layers Tooltip regarding format settings in the property panel has been removed as pagination for user action works for both template and non template.
INC-231316 · Issue 744051
Corrected tab display with collapsed panel
Resolved in Pega Version 8.8
Tabs were not displaying properly in the case view with collapsed summary panel (when there is too many tabs). This has been corrected.
INC-231325 · Issue 738557
Listener timeout added for fetching external content
Resolved in Pega Version 8.8
Email listeners became stuck and did not recover if there was an issue retrieving external content for a message. To resolve this, a timeout setting has been added when fetching external content.
INC-231625 · Issue 735231
Handling updated for fetching chain of archived ancestor cases
Resolved in Pega Version 8.8
Previous work done to show the case hierarchy dropdown for archived cases in the ReviewArchivedCase harness has been further modified to cover additional use cases. The original method to fetch the parent case was "Obj-Open-By-Handle" which supports secondary storage but triggers all declaratives, which may lead to errors under specific configuration. Using "Obj-Browse" instead does not support secondary storage, but does not trigger declaratives. In order to ensure the best coverage for various use cases, this has been updated to conditionally use both methods; the system will use "Obj-Browse" first, and if it fails it will check secondary storage using "Obj-Open-By-Handle".