SR-127275 · Issue 192497
Localization added for tab names launched from menu bar
Resolved in Pega Version 7.1.8
The tab names of the DC tabs were not localized if launched from a menu bar link having runscript->showharness. This has been corrected.
SR-130038 · Issue 198652
Localization added for RD label "No matching data was found"
Resolved in Pega Version 7.1.8
The Report Definition label "No matching data was found" was not being localized. This has been corrected by adding localization for the ValidValueList and AvailableValueList listviews.
SR-130038 · Issue 199608
Localization added for RD label "No matching data was found"
Resolved in Pega Version 7.1.8
The Report Definition label "No matching data was found" was not being localized. This has been corrected by adding localization for the ValidValueList and AvailableValueList listviews.
SR-129382 · Issue 197003
Display corrected for tabs within a tabbed repeat
Resolved in Pega Version 7.1.8
All tabs within a tabbed repeat were not displayed on the screen: depending on the screen resolution, only a few tabs were displayed in the available screen area with the rest hidden. This was found to be an issue with the CSS on the UL tag, and has been fixed.
SR-129382 · Issue 199747
Display corrected for tabs within a tabbed repeat
Resolved in Pega Version 7.1.8
All tabs within a tabbed repeat were not displayed on the screen: depending on the screen resolution, only a few tabs were displayed in the available screen area with the rest hidden. This was found to be an issue with the CSS on the UL tag, and has been fixed.
SR-126787 · Issue 194580
MultiSelectList details propagated correctly
Resolved in Pega Version 7.1.8
MultiSelectList details were getting saved for the second row with the same values given for the first row. This was an error with the "MultiSelectList" control, and the code has been updated in the MultiSelectList.java file.
SR-126799 · Issue 192968
Grid action events carried over after upgrade
Resolved in Pega Version 7.1.8
After upgrade, the actions configured for a grid that had been multiple click actions became split across multiple action sets - click, enter, up key, and down key. This was an issue with already configured actions not being copied correctly from "pyEditBehavior" to "pyActionSets", and has been corrected.
SR-126852 · Issue 196797
Handling added for click parameters containing HTML to open rule with magnifying icon
Resolved in Pega Version 7.1.8
If a parameter contained HTML characters, it was not possible to open any rule using the magnifying glass icon from next to a field. This behavior was related to XSS security catching the HTML, and has been resolved by sending the requested parameter in post body.
SR-126855 · Issue 193150
Smoothed double click handling for custom buttons with reload harness
Resolved in Pega Version 7.1.8
An application with several custom controls was generating errors after upgrade if the buttons were double-clicked. This was traced to the first click calling the designated ReloadHarness activity and completing it correctly, with the second click then causing the system to try to process the same request once again with the result of a stale transaction. In order to prevent this problem, the code has been changed to check for a "submitting" attribute on the same form element to avoid multiple submissions of the form.
SR-127017 · Issue 189834
Resolved window resizability for harness launched in a pop up
Resolved in Pega Version 7.1.8
Using pxButton to launch a harness in a pop up window generated a window with the maximize button disabled and no way to resize. This was caused by the resizable argument not being passed to the popup window when launching the harness, and the GenerateControlAction has been modified to pass this to the popup window.