SR-125769 · Issue 188698
ToolTip added for column filtering in bulk allocation
Resolved in Pega Version 7.1.8
While using bulk allocation, filtering a column resulted in reducing the number of results but it was unexpected that the select count was not similarly updated. The count is populated by pre-processing activities and not by the grid, but this information was not clearly conveyed. A Tool Tip has been added for SelectionIgnoresGridFiltering to clarify the usage of the "Select All xx Results" checkbox.
SR-125810 · Issue 188388
invokeHttpConnector updated to support TLS
Resolved in Pega Version 7.1.8
In order to support connections to TLS-enabled endpoints with Connect-HTTP, the invokeHttpConnector Activity has been updated.
SR-125851 · Issue 194660
Amended SmartInfo pop-up for auto-dismiss function
Resolved in Pega Version 7.1.8
A SmartInfo pop-up for the "Auto-dismiss on hover away" checkbox contained the message "When this is unchecked a close icon is added to the SmartInfo to explicitly dismiss it. Clicking outside the SmartInfo also dismisses it.", but clicking outside the window did not dismiss it. This pop-up contained incorrect information, and has been modified to remove the information about dismissing the window by clicking outside of it. If the checkbox is unchecked, the close icon will appear and must be used to dismiss the window.
SR-125851 · Issue 193930
Amended SmartInfo pop-up for auto-dismiss function
Resolved in Pega Version 7.1.8
A SmartInfo pop-up for the "Auto-dismiss on hover away" checkbox contained the message "When this is unchecked a close icon is added to the SmartInfo to explicitly dismiss it. Clicking outside the SmartInfo also dismisses it.", but clicking outside the window did not dismiss it. This pop-up contained incorrect information, and has been modified to remove the information about dismissing the window by clicking outside of it. If the checkbox is unchecked, the close icon will appear and must be used to dismiss the window.
SR-125878 · Issue 192240
Error messages displayed for Decimal control
Resolved in Pega Version 7.1.8
When attempting to validate any property with decimal control, no error messages were shown on the screen. This was because in the control 'Decimal' the messages on the property are cached by 'hasValidValue()' , so error messages were not displayed on the screen even if it was validated. To facilitate workflows, the control 'Decimal' has been updated to set any messages back on the property after 'hasValidValue()', and a check has been added for messageOnPropAfter.
SR-125894 · Issue 188734
Home button fixed for Microsoft Internet Explorer 8 user portals
Resolved in Pega Version 7.1.8
The Pega "home" button was not working in user portals with the Microsoft Internet Explorer 8 browser. This was a special use case in Microsoft Internet Explorer 8, where the inner tag had style set with display:none through CSS, hence was click firing on the tag instead of element. This has been fixed by adjusting the 'processBehavior' function in the file 'pzpega_ui_events.js'.
SR-125894 · Issue 192175
Home button fixed for Microsoft Internet Explorer 8 user portals
Resolved in Pega Version 7.1.8
The Pega "home" button was not working in user portals with the Microsoft Internet Explorer 8 browser. This was a special use case in Microsoft Internet Explorer 8, where the inner tag had style set with display:none through CSS, hence was click firing on the tag instead of element. This has been fixed by adjusting the 'processBehavior' function in the file 'pzpega_ui_events.js'.
SR-125895 · Issue 188735
Close button fixed for work elements with Microsoft Internet Explorer 8
Resolved in Pega Version 7.1.8
The Close button on work items in CaseWorker was not working in the Microsoft Internet Explorer 8 browser. This was due to 'document.getElementsByclassName' not being supported in Microsoft Internet Explorer 8, and it has been replaced it with the cross-browser jQuery class selector API to get the element with class name.
SR-125895 · Issue 189356
Close button fixed for work elements with Microsoft Internet Explorer 8
Resolved in Pega Version 7.1.8
The Close button on work items in CaseWorker was not working in the Microsoft Internet Explorer 8 browser. This was due to 'document.getElementsByclassName' not being supported in Microsoft Internet Explorer 8, and it has been replaced it with the cross-browser jQuery class selector API to get the element with class name.
SR-125906 · Issue 192682
Work object locking improved for Advance Flow
Resolved in Pega Version 7.1.8
An Advance Flow call in SLA gave a 'lock not held' error on commit when it was used in subcases where the parent has a dependency (e.g. waiting for the child to resolve). This was a problem where the commit released the work object before the escalation action was executed, and has been resolved by modifying 'SpawnQueueItemForFlowDependency' to open and set the new transaction before and after the commit.