Can anyone help me in hiding a button the the menu bar, i.e. On the PR12, hide the delete button, but still make it available under the drop down on the Inquire button.
Changing the value of visible from 1 to 0 does not work, and neither does tp=hidden.
Any ideas on how to accomplish this in design studio?
Without getting fancy, using your example I can hide any button on a form using the simple javascript below, but when I try to hide any of the buttons on the tool bar, e.g. delete, Add, Change, the entire bar goes away, any ideas?
function FORM_OnInit() { var objToolBarBtn = lawForm.UIDocument.getElementById("_l83"); objToolBarBtn.style.visibility="hidden"; }