Question
1
Replies
567
Views
Cognizant Technology Solutions
Posted: July 2, 2019
Last activity: July 2, 2019
Closed
Function not working on Run script for Pega 8.2
One Function which is defined in a text file is not working on Run script for Pega 8.2 while we are clicking a row in a List View .
The Function is actually defined within a text file .Below is the definition of the function .
function GetDetails(nRow){
var url = requestURI + "?pyActivity=Chartis-FW-OneClaimCore-Data-UserMaint-USER_MAINT.UserMaintenanceRowSelected&RowNo="+nRow;
//openUrlInSpace(url);
window.open(url,'_self');
}
Hi Avishek,
Can you please confirm if the function itself is not getting called or the new window is not opened?
You can add an alert in the function and see if the alert is getting triggered.
If the alert is not trigerred,Define the same function in the userworkform and check if it is being picked.
Please check if there are any console errors if the function is called and the new window is not opened.