Hi, we were seeing the following error in our application
The following patch resolved it which is pretty simple
Code:
16:07:54.885:XRP5:WARN:Log:TypeError: Cannot call method '$52z' of undefined
Stack from error.stack:
Selection.dataArrived()
eval()
ResultSet._doneDataArriving()
isc.B.push.isc.A.fetchRemoteDataReply()
[c]Class.fireCallback()
[c]Class.fireCallback()
DataSource.fireResponseCallbacks()
DataSource._completeResponseProcessing()
DataSource._handleSCServerReply()
[c]Class.fireCallback()
The following patch resolved it which is pretty simple
Code:
if (window.isc && isc.version.startsWith("v9.0")){
isc.Selection.getPrototype().addProperties({
//9/3/13..NULL CHECK on this.data
dataArrived:function (_1,_2,_3){if(this.data==null || this.data.$52z()){return}
this.dataChanged(null,null,null,null,null,_3)}
})
}
Comment