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!

APEX 24.1 – Undocumented Button Properties in Interactive Grid Toolbar Controls

Inês ToméDec 17 2025 — edited Dec 17 2025

Hi,

I'm extending the IG toolbar programmatically using copyDefaultToolbar() and toolbarFind(), then pushing custom buttons. The official docs only mention basic properties like type, action, and iconBeforeLabel.

I want to apply the t-Button--warning class to a button (or other APEX theme classes), but I'm unsure which property to use. I've tried:

var toolbarGroup = toolbarData.toolbarFind("actions3");
toolbarGroup.controls.push({
type: "BUTTON",
action: "add-supplier",
label: "Add Supplier",
icon: "fa fa-plus",
iconBeforeLabel: true,
hot: true,
cssClasses: "t-Button--warning" // This doesn't work
});

Any guidance would be appreciated!

Thanks.

This post has been answered by Karel Ekema on Dec 17 2025
Jump to Answer
Comments
Post Details
Added on Dec 17 2025
2 comments
330 views