SR-C1026 · Issue 344634
Able to add When condition for DisplayYesNo
Resolved in Pega Version 7.4
An exception was generated when attempting to add 'when' conditions for DisplayYesNo control in Section. The pzActionConditionSource activity was fetching the pyUIElement value from the Primary Page and setting it to UIELement as intended, but when the pyUIElement value is empty, a null-pointer exception occurs. Handling has now been added to avoid this scenario.
SR-C1835 · Issue 346650
Timeline enhancement
Resolved in Pega Version 7.4
An enhancement has been added to the setDefaults API to allow for use of a custom moment function for the out-of-the-box pxTimeline. This can be used to set the Timezone for displaying the events.
SR-C2963 · Issue 347630
Added handling for always show page level errors
Resolved in Pega Version 7.4
Property level errors were shown, but Page level properties were not shown even when the harness field was checked to always show both field level and form level errors. This was due to missing handling for the 'always show' option, which has now been added.
SR-C2963 · Issue 346977
out-of-the-box section Errors shown
Resolved in Pega Version 7.4
After upgrade, error messages were not shown in some scenarios such as lazy loaded layouts in Templatized UI. This was due to missing error handling, and has been fixed.
SR-C3748 · Issue 345888
Microsoft Internet Explorer compatMode check updated to documentMode
Resolved in Pega Version 7.4
The compatMode property introduced in Internet Explorer 6 is deprecated in favor of the documentMode property introduced in Internet Explorer 8. Applications that currently rely on compatMode will continue to work in Internet Explorer; however, they have been updated to use documentMode.
SR-C4046 · Issue 351373
JAWS reads group layout tab headers
Resolved in Pega Version 7.4
When using JAWS for 508 testing, the screen reader was reading group layouts with tab numbers rather than the field value provided for the header. This was due to missing aria-labels, which have now been added.
SR-C4784 · Issue 347888
Tooltips display fixed for Google Chrome hover
Resolved in Pega Version 7.4
When launching an interaction for the first time using Google Chrome, tooltips for the link were not displayed correctly on hover. Refreshing or reloading the frame displayed the tooltips as expected. This was due to an issue with focus in Google Chrome, and has been corrected.
SR-C4784 · Issue 346817
Tooltips display fixed for Google Chrome hover
Resolved in Pega Version 7.4
When launching an interaction for the first time using Google Chrome, tooltips for the link were not displayed correctly on hover. Refreshing or reloading the frame displayed the tooltips as expected. This was due to an issue with focus in Google Chrome, and has been corrected.
SR-C4784 · Issue 344824
Tooltips display fixed for Google Chrome hover
Resolved in Pega Version 7.4
When launching an interaction for the first time using Google Chrome, tooltips for the link were not displayed correctly on hover. Refreshing or reloading the frame displayed the tooltips as expected. This was due to an issue with focus in Google Chrome, and has been corrected.
SR-C4920 · Issue 347563
Grid Header checkbox behavior modified for consistency
Resolved in Pega Version 8.1
Unexpected behavior was seen when clicking on the Checkbox present in Header: all other checkboxes changed their state (which was expected), but if the the Readonly checkbox was checked it was also changing the state the first time (which was not expected). After this first state change, the read-only checkboxes were not changing state (which is correct behavior). Previously, the behavior of Select All / CheckAll checkboxes was as follows: If the SelectAll / CheckAll checkbox is checked - Individual checkboxes are checked only when they are NOT disabled If the SelectAll / CheckAll checkbox is unchecked - Individual checkboxes are unchecked irrespective of their DISABLED state The behavior has now been changed as below: If the SelectAll / CheckAll checkbox is checked - Individual checkboxes are checked only when they are NOT disabled If the SelectAll / CheckAll checkbox is unchecked - Individual checkboxes are unchecked only when they are NOT disabled