SR-B7621 · Issue 278634
Activity created cases open correctly
Resolved in Pega Version 7.3
When a case was created through an activity, an error was generated when opening the case and clicking to open assignment. This was traced to an incorrect page name being passed if the primary page was different, and has been resolved by modifying the CompleteAssignment activity Step 19 to check the precondition of Page name.
SR-B8469 · Issue 278141
RTE linkbox input handling corrected for modal windows
Resolved in Pega Version 7.3
In an "inline editable" grid with 'click to edit' selected, clicking on the RTE link inputbox in the modal window caused the grid row to be submitted as if the click took place outside the grid. The gridEventHandler has been updated to correct this.
SR-B8495 · Issue 279313
SVG image support added
Resolved in Pega Version 7.3
Support has been added for previewing and searching for SVG type images.
SR-B8696 · Issue 279855
Support added for FCM GetNextWork
Resolved in Pega Version 7.3
When using Federated case management (FCM) to get next work, the work object pulled was not assigned to the operator. This was due to the implementation of FCMR not supporting the moving of workbasket assignments to worklist through get next work. To support this use, the following functions now accept extra parameters as last param: FCMRGetNextWork FCMRGetNextWorkItem FCMRProbeNextWorkItem This will enable distinguishing between normal GNW and federated GNW, and it is possible to override any py rule call MoveToWorklist.
SR-B8744 · Issue 279872
OnClick passes parameters to DT from inside a grid
Resolved in Pega Version 7.3
The OnClick event was not passing its parameters to a Data Transform or activity if it was inside a grid due to the property not being generated with its full reference. This has been fixed by modifying pzActionAppendValue to generate the complete property reference instead of just the property name.
SR-B9137 · Issue 267865
RD column context menu alignment fixed
Resolved in Pega Version 7.3
On a report definition with many columns, scrolling to the right caused the column context menu to not be aligned with the column. The menu alignment code calculations have been modified to correct this.
SR-B9405 · Issue 278761
Filter popup opens in overlay section
Resolved in Pega Version 7.3
On launching the filter pop-up and cancelling it, filtering the column did not work if the grid was in an overlay itself. This was caused by a check in filterOnProperEvent which was preventing the filter pop-over from launching when the grid is in an overlay, and the issue has been resolved by ensuring the value is cleared when the filter is dismissed without selection.
SR-B9780 · Issue 286188
work object progression fixed after cancel/close with errors
Resolved in Pega Version 7.3
A repeat grid's modal dialog could be cancelled or closed without correcting the validation error fired by a field in it, but afterwards no actions could be performed on that specific work object even if the error was then fixed. This was caused by Messages added onto the pyWorkPage not being cleared on click of cancel if followed by clicking on grid pagination actions, and has bene resolved by changing the cancelmodal method from ModalButtonSubmit to ModalButtonCancel.
SR-B9879 · Issue 278433
RTE linkbox input handling corrected for modal windows
Resolved in Pega Version 7.3
In an "inline editable" grid with 'click to edit' selected, clicking on the RTE link inputbox in the modal window caused the grid row to be submitted as if the click took place outside the grid. The gridEventHandler has been updated to correct this.
SR-B9916 · Issue 283675
Hyperlink works on custom HC login page
Resolved in Pega Version 7.3
In a Hybrid Client App with a custom login page, a simple HTML link which calls the function to load the mashup code for the gadget worked in the browser but not in the HC. This was caused by window.open not working inside HC. To enable this, the _launchPopup api of compositegadgetmgr.js has been modified to use launchbox.Browser.start instead of window.open and the isCookieConsentRequired API has been updated to return false for popup case.