SR-B11192 · Issue 282623
Focus fixed for pxOperatorImage control
Resolved in Pega Version 7.3
When using pxOperatorImage control, the 'Tab' and 'Enter' keys were not usable to reach the Operator menu. This has been fixed by adding a tabindex attribute on the html tag of pxOperatorImage control to ensure proper focus.
SR-B11201 · Issue 281026
Downcasing added to ensure skin-defined templates are applied as expected
Resolved in Pega Version 7.3
When using a customized modal template and modal format defined in the application skin, the UI reflected the section modal template but not the skin template. This was traced to the CSS not being applied due to skin rule custom format names being case sensitive. To resolve this, code has been added to downcase the name when generating style for the modal.
SR-B11271 · Issue 281717
Assignment Gadget hang resolved
Resolved in Pega Version 7.3
The Open Assignment Gadget was hanging when loading assignments in perform harness, preventing completion of the assignment. This was due to a missing null check for dataRow in the setHeadersWidth API for grid generation, and has been fixed.
SR-B11600 · Issue 282715
Handling added for dot in visible-when rule
Resolved in Pega Version 7.3
On click of the icon next to the visible-when rule in order to open the rule, the error "Unable to open the rule as Base Class Value is empty" was generated if the 'when' rule of the conditions included a dot. To correct this, the pega_openRuleSP logic has been modified to fall back to the section class from the PRXML when the value of baseClassValue is empty.
SR-B11796 · Issue 281383
Column filters updated to escape values with angle brackets
Resolved in Pega Version 7.3
When attempting to apply a filter on a Repeat Grid or Report Definition column, the filter popup showed blank values for column values starting with the "" character. This was due to the browser treating "" as an HTML tag, and the pzGetGridColUniqueValues function has been updated to escape these values.
SR-B11800 · Issue 283413
Stage wide User Actions are consistent on section expand
Resolved in Pega Version 7.3
Stage wide User Actions were different on nested grid sections when the work bound grid was expanded. This has been resolved with an added check to see if the target element is inside a modal dialog.
SR-B11802 · Issue 285155
Fixed work object submitting with incorrect hidden datetime
Resolved in Pega Version 7.3
When a date field was configured with a validation to check if the date is in the future, the work object was getting submitted even if the validation failed and error messages existed on the clipboard. This was a missed use case in the resetDateTimeHidden function which clears the value from a hidden field if there is an error in the field, and has been fixed.
SR-B11988 · Issue 284340
Fixed pagination exception for grid with pagegroup property
Resolved in Pega Version 7.3
An invalid reference exception was generated while navigating to the second page of a grid sourced with a pagegroup property. This was an error with the preActivityParams being encoded twice, causing characters to be corrupted. The string query has been updated to resolve this problem.
SR-B12256 · Issue 281696
Editability check added to asterisk symbol (mandatory field expression) display
Resolved in Pega Version 7.3
Sections using conditional read-only and editable modes displayed the mandatory expression (asterisk symbol) in both modes. To correct this unexpected behavior, the GenerateLabelCellContent RUF has been updated to check whether the control is editable and only generate the asterisk if the result is true.
SR-B12345 · Issue 281568
Custom Validator support restored to Workformstandard
Resolved in Pega Version 7.3
Recent refactoring changed the behavior of Workformstandard. In order to support custom edit validate rules defined as part of the application to be executed on client-side, the custom validators HTML fragment has been restored to Workformstandard with correct pre-checks.