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.
SR-125929 · Issue 189682
Add Child navigation rule timing improved
Resolved in Pega Version 7.1.8
Attempting to set "Add Child" as a Navigation rule that performed an action on the selected row within a tree Grid using a modal dialog was generating a JavaScript error if used on the last row. When the "Add Child" action was selected, it attempted to add a child to the current row also set focus on the new entry, but at the time of the call to the selectRow function the Tree Grid has not yet been updated to include the additional child element. This caused the row variable to be evaluated as null. To correct this, a null check has been added that will correct the timing issues.
SR-125934 · Issue 190270
Adjusted modal dialog height functioning with repeating grid
Resolved in Pega Version 7.1.8
When using a repeat grid to open a modal dialog to add rows, the modal dialog height was getting increased by scroll adjustment always, which should be done only when its scrollHeight is greater than offsetHeight. Code changes have been made in the setModalDialogHeight function to correct this.
SR-125990 · Issue 189549
Fixed row expansion issue in repeat grid
Resolved in Pega Version 7.1.8
When a modal dialog was being launched from a button in a repeat grid that was configured with expand pane and had the option checked for "Expand Multiple Rows", clicking on the Next/Previous button caused the second row of the the repeat grid to be expanded by default. This was a nested grid issue, and has been fixed by clearing string parameters.