Triggered Actions on Buttons & New Metric Card
Oracle APEX 26.1 Triggered Actions on Buttons & New Metric Card 01 Introduction Oracle APEX 26.1 introduced something that quietly changes how I now build dashboards. Two features dropped in the same release that work beautifully together: Declarative Dynamic Action Support for Actions, Buttons, Cards, and Menus , and a brand new template component called Metric Card . 02 Context What This Used to Take Before 26.1, attaching click behavior to per-row elements (a button inside a card, an action on a template component, a menu item) usually meant one of two awkward options. Either you wrote JavaScript that read DOM data attributes and manually called apex.server.process() , or you built a Dynamic Action elsewhere in the page tree with a custom event hook. The connection between what was clicked and what happens lived in two different places. ...