How to hide or disable the Save button in the top of the form?


Badge +3

What way or ways are there to hide the Save button that is built in at the top of the form. I have other buttons that are tied to controls on the form itself and do not want users to be able to save with the button at the top.

 

Options suggested using CSS did not work. I beleive they were not for 365. Anyone have any success or option for doing this?


Thanks,


3 replies

Badge +4

At first,you should know what kind of skills are used in nintex for office 365.

ajax,jquey, jqueyUI, knockout.js, Ext.js,Asp.net.......

so, you can use jquery, like this.

  1. Set a CSS class to the button
  2. NWF$('.nf-approval-button').hide(); or NWF$('.nf-approval-button').prop('disabled', true);

       ※it's NWF$ instead of $ to use to refer to jquery

"formso365.nintex.com/Pages/FormsPart.aspx........" is your own main page(html+js+css)

Badge +9

Do You mean to save "Save" button in the Ribbon? If that's the case then u can Right click the button and from settings and from Ribbon select "Show on Ribbon" as No

Badge +9

Hi,

Your issue is solved?

Reply