Hi, is there any option to disable Edit Application, Delete All Entries, Delete Application from the actions option in a page. I just want the add entry option. I am using XWiki Enterprise 9.4 .
Hello Deny.
I have created an FAQ entry for you, see: How to remove “Edit Application”, “Delete All Entries” and “Delete Application” from an App created with App Within Minutes?.
I hope it helps,
Guillaume
You can also hide it with CSS, for example
#actionBox {
display: none;
}
to hide all the box and rely on generic “Create” button to create entries (since 9.5).
If you want to hide just some entries you could use
#actionBox .edit,
#actionBox .deleteData,
#actionBox .delete {
display: none;
}
1 Like
I did the same. Came here to share the answer, found it already.