INC-220989 · Issue 719866
Improved accessibility on create harness
Resolved in Pega Version 8.6.5
Hitting the tab key was navigating out of the popup on the create harness. This has been corrected.
INC-222507 · Issue 721695
Helper text added to clarify maxlength enforcement
Resolved in Pega Version 8.6.5
It is possible to enter more characters into a browser field than is specified by the maximum character limit unless read-only formatting is used. This is due to the resulting HTML input tag having the type of number, which leads to the browser default behavior of not honoring the maxlength attribute. In order to clarify this, helper text has been added with the message "Min and Max characters are ignored for type Number when 'Display value using read-only formatting' is unchecked."
INC-222922 · Issue 722993
Validations fire on collapsed accordion layouts
Resolved in Pega Version 8.6.5
Client validation was not firing on the selected tab of a layout group if the accordion layout was collapsed. If focus was switched to the second tab, the client validation on the first collapsed tab did not work. This has been resolved by modifying the 'else if' condition to pass the validation for the fields places in layout group tabs.
INC-224446 · Issue 724369
Load more works in non-templatized layout
Resolved in Pega Version 8.6.5
After adding a repeating dynamic layout inside a tab group layout (which is a deprecated feature) to make it non-templatized, the progressive pagination option to show the "load more" button did not work. This was caused by the load more functionality having a dependency on pega.ui.RDL even though pega.ui.RDL was not available in case of a non-templatized grid, with the result of generating an exception which broke the flow. This has been resolved by adding a null check which will allow the flow to proceed whether the grid is used inside non-auto-generated or auto-generated elements. Please note that it is strongly recommend to update any deprecated layouts to Layout Group as it is a best practice to keep the code updated to avoid any compatibility issues.