SR-122451 · Issue 184656
Smoothed multi-access group switching
Resolved in Pega Version 7.1.8
In the user portal, there is an option to change the access group to switch between the applications. There was no problem changing the access group the first time, but after creating a work object it was not possible to change the access group again. This was caused by the NavigationHeading - Changes table-layout CSS property value being set to "auto" , and the handleWidgets method has been changed to use the getAttribute method instead.
SR-122481 · Issue 189776
Issue with layout visibility condition expression formatting corrected
Resolved in Pega Version 7.1.8
After migration, the layout visibility condition expression was not working when given a value starting with zero in quotes (e.g. .tansactionstatuscd=='014'), although removing the single quotes or the zero caused the rule to evaluate to true. Previously, expressions were evaluated on the server side only but recent architecture changes moved this to the client side where such expressions were not supported. In order to ensure correct behavior, single quotes will be removed rom the given visible 'when' condition so the evaluation returns the expected result.
SR-122481 · Issue 186751
Issue with layout visibility condition expression formatting corrected
Resolved in Pega Version 7.1.8
After migration, the layout visibility condition expression was not working when given a value starting with zero in quotes (e.g. .tansactionstatuscd=='014'), although removing the single quotes or the zero caused the rule to evaluate to true. Previously, expressions were evaluated on the server side only but recent architecture changes moved this to the client side where such expressions were not supported. In order to ensure correct behavior, single quotes will be removed rom the given visible 'when' condition so the evaluation returns the expected result.
SR-122500 · Issue 183869
Smoothed use of Row Repeat with a Repeating Grid that shares references
Resolved in Pega Version 7.1.8
Issues were found with the display of Row Repeat. It was not displayed when a section contained a repeating grid and row repeat layout that had the same pagegroup property reference, and in other cases was displayed improperly after taking the wrong class for a 'when' condition. The failure to display was due to the active page being the last page of the page group as set by Repeat Grid. The RepeatGrid layout generation was changed beginning in v6.3 onwards, and now uses a method-based engine. However, the RowRepeat layout has been deprecated and therefore still uses the previous generation method. This difference creates a conflict when the RowRepeat kicks off in the same stream generation. Furthermore, this issue arises only when the two layouts bound to same PageGroup property source, and not with a Pagelist property. To resolve this, the system now resets the activePage to that of the primary page in case of page group data source in the Repeat Grid generation so that the Row Repeat gets the proper active page for its generation. The issue with displaying when it should not has been resolved by retaining the existing business logic wherever the section rule with body visible when condition is used in a repeating layout.
SR-122513 · Issue 184655
Resolved missing alert for dirty Dynamic Select pages
Resolved in Pega Version 7.1.8
At runtime when the user selects some value in first dynamic\c select and tries to close the work object by clicking on the red cross mark(X), the expected dirty form alert message was not appearing. The system should set SectionReloaded to true to trigger an alert in this circumstance, but in this was not happening for this case and has been corrected.
SR-122611 · Issue 188016
Removed flickering scrollbar during spellcheck
Resolved in Pega Version 7.1.8
Clicking the spellcheck icon while using a composite portal with a work area caused a scrollbar to briefly appear then disappear. In the spellcheckerscript js rule, a temporary div is created in the DOM that causes a vertical scroll bar to show up temporarily. The innerHTML of the temporary div has been nullified to resolve the flickering.
SR-122660 · Issue 185609
Corrected button label issue
Resolved in Pega Version 7.1.8
A button label configured as "&Cancel" was not displaying correctly due to the label being double-encoded in the generatebutton RUF. This has been corrected.
SR-122670 · Issue 182261
Attach a file' modal dialog dropdown now displays Label instead of RuleName
Resolved in Pega Version 7.1.8
In the "Attach a file" modal dialog, the file category dropdown recently changed from DynamicSelect control to Dropdown control. As a result, the dropdown displayed the rule name instead of its label, which was unexpected. To remedy this, the 'Property for display text' of the Category drop down field for the rulesets has been updated to display 'pyLabel'.
SR-122881 · Issue 184898
Print preview for work objects in a fixed portal no longer truncated
Resolved in Pega Version 7.1.8
Printing a work object opened in a fixed portal was resulting in part of the work object being truncated in the print preview. This issue was traced to a change in the name space of "interceptPrint" method, and has been corrected.
SR-123008 · Issue 185497
Improved performance for heavily active ruleset grids
Resolved in Pega Version 7.1.8
Progressive performance issues were seen in environments with frequent rule updates. Memory leaks were found in the grid code, and performance has been enhanced by the following updates: An erroneous global object was removed and the process tuned for nullifying the grid objects. The Section RuleFormLayout rule had the DesignViewInclude section was erroneously included twice: the duplicate has been removed. Issues were resolved in the "openRuleAdvanced," tab support, and dynamic container controls. An event listener has improved handling of load and unload of the menus. Av condition was added in if block checking for styleClass which adds correct number of dots for the case where image source selected is icon class. The Actions split button was consolidated to a single button with a down arrow. The +Create submenu was removed from the actions menu for @baseclass and 3 overrides. The autoAdjustProgressiveGrid was optimized. Handling for Composite Gadget manager was updated.