SR-C3603 · Issue 351594
Expand/collapse checkboxes read by JAWS
Resolved in Pega Version 8.1
JAWS now reads checkboxes used to expand and collapse rows.
SR-C36057 · Issue 387665
Required field error message appears under multiple controls when using multiple multiselect
Resolved in Pega Version 8.1
Error messages for multiple controls in a repeating dynamic layout displayed only for first control instead of the expected behavior of an error message displayed under all controls. The required error messages were not showing up when multiple multiselectlist control was being used due to a missing name attribute for multiselectlist control, and this has been added to correct the problem.
SR-C36091 · Issue 377696
Stuck run detection improved to give information and stop bad jobs
Resolved in Pega Version 8.1
When a run is in NEW state, attempting to trigger it caused the run to move into the INITIALIZING state and after some time back to the NEW state. Once that happens for the first time, it would continuously happen to the same run and force the creation of a new run. Investigation showed that in very specific situations a data flow run might take too long to initialize. That caused the system mechanism that detects runs stuck in a transitioning state to kick in and move it back to NEW state. Later that run would actually be initialized but its status would no longer be reported correctly, giving the impression that the run was always going from NEW->INTIALIZING->NEW. To prevent confusion, code has been to the stuck run detection that will add troubleshooting information and stop that run if it's in a state that was was not anticipated.
SR-C36306 · Issue 389694
Handling added for double-click on previous step in TreeNavigation7
Resolved in Pega Version 8.1
After configuring a screen flow navigation that utilized the TreeNavigation7 Section rule, double clicking on a previous step generated the error "Modal Dialog: Ajax Call Failure!".On double click, the onclick on <li> tag was executed and throwing the callback failure alert which was not expected, causing the system to skip the execution of the "nodeExpandCollapse" function in TreeNavigation section. This has been fixed.
SR-C36337 · Issue 376557
Harness handling updated for PDF generation
Resolved in Pega Version 8.1
If a PDF was generated using HTMLtoPDF activity with a section that consists of Required input fields, the asterisk symbol for the required field was displayed as text (required) in the PDF. This was caused by the harness not being properly passed to the child for the PDF generation, and has been fixed.
SR-C36340 · Issue 386292
Fixed filter icon alignment for Microsoft Internet Explorer 11 collapsible layout grid
Resolved in Pega Version 8.1
The Filter icon was placed at the top right corner instead of in parallel with the column header label when using Microsoft Internet Explorer 11 with a grid inside a collapsible layout if a height is given for the cell in the advanced properties. To fix this, the height will be taken from the cell when the offset height is 0.
SR-C36533 · Issue 376349
Refresh of tab section retains focus
Resolved in Pega Version 8.1
In a section with a tabbed layout containing several tabs, a refresh of the section shifted the focus to the first tab regardless of the current active tab. This has been fixed.
SR-C36622 · Issue 379749
Smartinfo fires correctly when URL encryption is enabled
Resolved in Pega Version 8.1
If Smartinfo was enabled, running a report definition worked as expected. If URL encryption was enabled, Smartinfo did not display. This has been corrected with an added check in pega_ui_smartinfo.js.
SR-C36692 · Issue 377206
Corrected double-encoding of Japanese characters in My Team name
Resolved in Pega Version 8.1
Creating a team from the case default portal (My Team tab) with a Japanese team name while using the Japanese locale would display correctly on the My Team list, but selecting the Japanese-named team generated a "not found" error message, and attempting to edit the team information resulted in an error and the data was not saved. This was an issue with the Japanese characters in the data-transform parameter being double-encoded, and has been fixed.
SR-C36705 · Issue 376310
Filter indicator correctly updated for columns following virtual RD
Resolved in Pega Version 8.1
The filter indicator color was not changing for columns after a hidden column in the RD was filtered; the results were displayed correctly, but the small filter icon was not updated with "filtered" styling (red color) but instead remained as "filter" styling (black color). This was due to the wrong column subscript getting generated for the column after a virtual RD, and has been fixed by modifying GenerategridHTML and GenerateCellContent to put the correct subscript in the filter criteria page.