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-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.
SR-126031 · Issue 188833
Escape added to allow double quotes in UI read-only expressions
Resolved in Pega Version 7.1.8
In the Read only expression under the presentation tab of the properties panel for a section, including an expression which contained double quotes blocked the UI from being rendered. Upon analysis it was found that the characters were not properly escaped, and this has been fixed.
SR-126044 · Issue 189648
Rule resolution class search corrected for performFlowACallback function
Resolved in Pega Version 7.1.8
When performing an operation on a grid and then switching to local action, the thread name was being appended as undefined. This was caused by the rules search running on @baseclass instead of the framework class. A null check has been added to the performFlowACallback function to correct this.
SR-126075 · Issue 192229
Added error handling for nested Tree Grid submit function
Resolved in Pega Version 7.1.8
When using a nested tree grid with a modal dialog that had a section Errors(section) from @baseclass, clicking the "save" button in the popup hid the files shown in the expanding area. This has been fixed by explicitly clearing the "partialTrigger" parameter set by the parent grid for the function SubmitModalFlowAction if there are errors in interest page.