Hello Folks, today in this we will see How to hide Ribbon Save button on a Nintex Form.
In our day to day life we are suffering from various development related issues. I was went through the same yesterday. Where I want do disable or do not want to show the default Save option in a Nintex form.
Nintex Form: Trigger a workflow from a Button click
I have tried lot many options on the form which are out of the box as well as some of them are the custom CSS.
Finally, I came out with the below solution.
Nintex Workflows – Issues Troubleshooting
To hide the “Save” option on a Nintex form you can use JavaScript on the form:
Go To Form Settings –>> Custom JavaScript from the Advance tab.
Then add the below script to the text input area of “Custom JavaScript”.
NWF$(document).ready(function(){
//Hide the save button on the ribbon
document.getElementById( "RibbonSaveButton" ).style.display = 'none'
});
By this way we can hide the Save Button from the Nintex form.