Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

IG Tooltip error

RNJul 2 2020 — edited Jul 2 2020

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

This post has been answered by Keyser on Jul 2 2020
Jump to Answer
Comments
Post Details
Added on Jul 2 2020
2 comments
349 views