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!

How to add custom Actions button to Custom Toolbar?

Leon_MJul 20 2019 — edited Jul 23 2019

Hello Experts,

We are on Apex 19.1

We need to create Custom Toolbar in Interactive Grid with our own Search field and buttons.

Also we need to add custom Actions button with only two options - Columns and Download.

I created Custom Toolbar in Interactive Grid Attributes using code below:

config.toolbarData = [

        {

            groupTogether: true,

            controls: [

                {

                    type: "TEXT",

                    id: "search_field",

                    enterAction: "custom-search",

                },

                {

                    type: "BUTTON",

                    action: "custom-search"

                }

            ]

        },

        {

            controls: [

                {

                    type: "BUTTON",

                    id: "my-id",

                    action: "custom-action"

                }

            ]           

        }

      ];

Do you know how can I add Actions button to this code with two options - Columns and Download?

Thank you!

This post has been answered by John Snyders-Oracle on Jul 22 2019
Jump to Answer

Comments

Satishbabu Gunukula
Answer
I hope this is what you are looking for...Check it out below links

http://pythianpang.wordpress.com/2009/07/07/data-guard-asm-primary-to-filesystem-physical-standby-using-rman-duplicate/
http://indiandba.blogspot.com/2011/03/create-physical-standby-on-normal-file.html

Regards,
http://www.oracleracexpert.com
Oracle RMAN New Features in 11g
http://www.oracleracexpert.com/2011/12/oracle-recovery-managerrman-new.html
Understand Oracle RMAN Reporting
http://www.oracleracexpert.com/2011/06/understand-oracle-rman-reporting.html
Marked as Answer by yakub21 · Sep 27 2020
1 - 1

Post Details

Added on Jul 20 2019
4 comments
3,623 views