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!

Interactive grid Toolbar hiding during page loading using Jquery

3421891Apr 5 2017 — edited Apr 6 2017

Hi,

I am having issue in the interactive grid tool bar hiding for the below scenario

1. Right now having four Interactive grid reports in one page and from that I need to remove the toolbar,so that we created below Jquery function using class but it's not working when I call the class

in column= class=toolbar.

Toolbar issue.PNG

But If I remove the class from this function it's working fine for all four report in static files but I need to hide only two reports toolbar during page load so that I am using class for this disable function.

| $('.toolbar').load( | |

function disable_ig_toolbar() {

            $('.js-apex-region').each(function () {

                            var ig$ = apex.region($(this).attr('id')).widget();

                            ig$.interactiveGrid("getToolbar").hide();

                            ig$.interactiveGrid("resize");

            })

});

so kindly help me to resolve this issue.

Br,

Arunprasad M.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 3 2017
Added on Apr 5 2017
3 comments
381 views