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!