Hello all,
Using apex 19.2
Following piece of code (added to IG's JavaScipt Initializtion Code section) shows errors in the Browser's JavaScript console:
function (config) {
config.defaultGridViewOptions = {
persistSelection: true,
tooltip: {
content: function (callback, model, recordMeta, colMeta, columnDef){
return model.getValue (recordMeta.record, columnDef.property)
}
}
}
return config;
}
The errors are:
Uncaught TypeError: Cannot read property 'property' of null
Uncaught TypeError: Cannot read property 'record' of null
Please provide guidance on how to fix them?
Thanks a lot,
RN