Warm tip: This article is reproduced from serverfault.com, please click

Apex 5.1 interactive grid hiding toolbar buttons

发布于 2018-04-05 20:37:57

Is it possible to allow add and save actions but hiding the "add row" and 'edit" buttons in the grid toolbar? When I tried unchecking those buttons I was not longer able to add data to the grid progrmmatically. How can I allow adding multiple rows programmatically and having "save" button but hiding "add row" and "edit"?

Questioner
Coding Duchess
Viewed
0
romeuBraga 2018-04-06 05:28:35

Try to add this css to your page:

#myStaticIgId button[data-action="selection-add-row"], #myStaticIgId div[data-action="edit"] {
    display: none !important;
}

enter image description here