Get a first look at what's coming. The Developer Passport Australia Release Preview kicks off March 12. Dive in! 

UI BUILDER: Show the buttons of the action bar component

fabrizio95360
Tera Expert

Hi developers,

in my "action bar" component I would like to show the buttons that are inside the three dots,

fabrizio95360_0-1698753538896.png

fabrizio95360_1-1698753638390.png

 

I saw that in the data resources form controller in the actions there is a property that is set to false for the save button,  while for the other two buttons it is set to true "shouldBeInOverflow": true

fabrizio95360_2-1698754086758.pngfabrizio95360_3-1698754127929.png

 

I don't know if that's the reason, but I don't know how to make those buttons appear as the save button.

 

 

 

 

 

1 ACCEPTED SOLUTION

Brad Tilton
ServiceNow Employee

Actions in workspace are controlled using some tables on the back-end. Each button has a series of records, but you'lll need to find entries for each button in the sys_ux_form_action_layout_item and uncheck the Overflow checkbox for any buttons you want to show directly on the page and not in the overflow menu (three dots). You can also get to that table by going to UX Form Action Layouts in the menu, finding your table/workspace combo and clicking into the records from there.

BradTilton_0-1698759709019.png

 

View solution in original post

5 REPLIES 5

That solved it for me. Thank you!