INC-139966 · Issue 606842
JAWS announces popup error message
Resolved in Pega Version 8.6
When a form is submitted without giving value to required field, a browser pop up appears. The expected behavior is that the screen reader (JAWS) should move the focus to the field that has error and read the error message However, JAWS was not announcing the error "Value cannot be blank". This was traced to a scenario where if pega.u.d.fieldErrorType === "ERRORTEXT" is true, the class on the span within the error div will be set to "inputSpans", and this resulted in the return of an empty array for document.querySelectorAll("span.iconError.dynamic-icon-error"). To resolve this, support has been added for the "inputSpans" class.
INC-140140 · Issue 595669
Multi Select populates values for Page group
Resolved in Pega Version 8.6
Multi Select populates values for Page groupThe Multi Select control was not populating values when Page group was chosen as a source. This has been resolved by updating control_multiselect and pzgetACdata to support page group source.
INC-140205 · Issue 595661
Safe check added for first element focus on inline table edit
Resolved in Pega Version 8.6
When moving the scrollbar when performing an inline edit of a hierarchical table, releasing the scrollbar caused it to move to the top of the table. This would continue until a refresh was performed. To resolve this, a safe check for focus first element method has been added.
INC-140289 · Issue 589004
Check added to preserve clipboard pages for pop-up
Resolved in Pega Version 8.6
Many properties were missing in the clipboard after launching an ImageViewer. This was traced to the clipboard pages being deleted in the pop-up mode, and has been resolved by adding a check to not delete pages in case of pop-up opened from top navigation case.
INC-140848 · Issue 596460
Button row correctly added for click on exception list
Resolved in Pega Version 8.6
After upgrade, clicking on an exception list button in the mobile app was not adding a row to an existing Page List as expected. Investigation showed that pega.u.d.refreshSection was not executing correctly from RunScript, which was traced to a missed use case for handling an empty repeating dynamic layer in this scenario. This has been corrected.
INC-141099 · Issue 598130
Updated Cosmos confirm notification visibility conditions
Resolved in Pega Version 8.6
After routing an assignment to different operator, the current operator was still seeing the Go button in Cosmos for processing the assignment. Clicking on the button resulted in an error. To resolve this, the confirm notification section reload has been moved to a different context, and the visibility conditions have been updated to handle more use cases.
INC-141302 · Issue 614992
UI automation script documentation update
Resolved in Pega Version 8.6
To provide a more consistent experience, explanatory comments in the code for UI automation scripts have been removed.
INC-141387 · Issue 612825
Autocomplete/autopopulate in table works properly with keyboard
Resolved in Pega Version 8.6
When two autocompletes in a table (two separate columns) were sourced by different properties within the same data-page, clicking to select a “reason-code” in the first autocomplete column correctly populated the corresponding “reason description” in the second column autocomplete. However, when using configured keyboard presses on the auto complete with post value and data transform actions (enter-key, tab-key, and on change), selecting from the auto-complete list and pressing enter or tab to select the item populated the second column as expected but the first column auto-complete showed the selected code for a moment and then was cleared. This as traced to the associated property set value executing after all associated properties setvalue actions were completed, and has been resolved.
INC-141451 · Issue 595435
Radio button helper text is localized
Resolved in Pega Version 8.6
The localized value from content was not being served for helper text in a radio button group. This has been resolved by adding the necessary localization support to the button template.
INC-141499 · Issue 596066
Tooltip option for Label control visible
Resolved in Pega Version 8.6
After upgrade, the Tooltip option for the Label control in grids/tables was missing. Labels which had a tooltip before upgrade were working, but new fields could not add a tooltip. This was traced to a check for 'Run visibility condition on client' condition, and this has been removed for tooltip layout to resolve the issue.