SR-128714 · Issue 198058
Checks added to harness unload at logoff
Resolved in Pega Version 7.1.8
pyDeleteDocumentPg and pyOnBeforeWindowClose requests that happen on harness unload were causing 500/401 errors when called after logoff request. These calls are now prevented with logoff checks in harnessOnBeforeUnload.
SR-128720 · Issue 194443
Fixed CSS styling for buttons in repeating layouts with refresh
Resolved in Pega Version 7.1.8
Buttons in repeating layout are meant to have incremental IDs to make each distinct for actions applied per row, but if an onClick > refresh this section was applied the DOM that was given after the refresh was no longer distinct and the triggering of CSS styling was affected. This was a problem in repeating layouts where the field control's ID was not incremental but was only pointing to the property name. This has been resolved with unique generation of input IDs and labels for attributes.
SR-128720 · Issue 193408
Fixed CSS styling for buttons in repeating layouts with refresh
Resolved in Pega Version 7.1.8
Buttons in repeating layout are meant to have incremental IDs to make each distinct for actions applied per row, but if an onClick > refresh this section was applied the DOM that was given after the refresh was no longer distinct and the triggering of CSS styling was affected. This was a problem in repeating layouts where the field control's ID was not incremental but was only pointing to the property name. This has been resolved with unique generation of input IDs and labels for attributes.
SR-128823 · Issue 193672
Added localization for CategoryActions navigation rule
Resolved in Pega Version 7.1.8
The CategoryActions navigation rule has been made available for localization.
SR-128986 · Issue 194639
Accessibility Report function removed
Resolved in Pega Version 7.1.8
The accessibility report required Quirks mode in order to render properly and be functional. This meant a modern browser such as Microsoft Internet Explorer 10/11 had to run in compatibility mode. This was not desirable behavior, as it meant the report was not compatible with non-Microsoft Internet Explorer browsers such as Google Chrome/Firefox and the Quirks mode requirement directly conflicted with the new requirement to use Standards mode in Designer studio and native Pega 7 developed apps. Therefore, the Accessibility Report has been deprecated and removed and developers are encouraged to use third party tools such as FireEyes to assess their application from an accessibility compliance perspective.
SR-128987 · Issue 195605
Dynamic Layouts incorrectly shown as not accessible
Resolved in Pega Version 7.1.8
Dynamic Layouts were incorrectly shown as not accessible in the Accessibility Report. This has been corrected. However, please note that the report's requirement to run in Quirks mode to render properly and be functional made it incompatible with modern browsers, and the Accessibility Report has been deprecated and removed. Developers are encouraged to use third party tools such as FireEyes to assess their application from an accessibility compliance perspective.
SR-129011 · Issue 193996
Added space to pzGridModalTemplate
Resolved in Pega Version 7.1.8
The pzGridModalTemplate used as a pop-up to input data to a grid was missing a space between the "Previous"/"Add" buttons and "Ok"/"Cancel" buttons. This has been inserted.
SR-129015 · Issue 196408
Cleaned up section reload on change
Resolved in Pega Version 7.1.8
In a section with a drop down on which an onChange event was added and a refresh section is set as the action, the refresh section calls a data transform and no activity call. However upon execution, there was a pop up with the error message 'Illegal Argument Exception'. When the activity is cleared the section rule should remove the parameter, but the preactivity params were not cleared in the clipboard even after clearing the activity. This has been corrected.
SR-129075 · Issue 197719
Sorting corrected for mixed column types in virtual RD grids
Resolved in Pega Version 7.1.8
If a grid contained both dynamic and static columns, the sort icon did not change after clicking on a column to change the sort in a virtual report definition grid. This was due to a missing CSS style for the static columns in this scenario, and a check has been added to look for multiple column types.
SR-129080 · Issue 199016
Ensured correct clearing for error in DateTime control field
Resolved in Pega Version 7.1.8
If there was an error on the Datetime control field present in a repeat grid, correcting the value in that Date field and then adding another row that follows the one containing the error generated a popup error message and it was not possible to set the date. The issue was in the drop down display mode, which re-rendered an invalid field as empty but the corresponding input had the same invalid value. That caused the new submit with empty values (which is valid) to produce the same error due to the input present in the client. To resolve this, the invalid hidden input for will now also be reset.