How do you disable default List buttons in Nintex Forms?

  • 15 November 2014
  • 7 replies
  • 26 views

Badge +6

How do you disable this menu in Nintex Forms? I would like to leave my buttons that I control but I don't want people to have an option of using these buttons.
Menu.PNG


Regards

 

Bhuti


7 replies

Userlevel 7
Badge +17

I believe you can hide the edit tab with CSS. You can add this to your form settings so it only occurs when the form is open. And do this with care, removing the wrong area or too much of the ribbon can have odd effects.

#Ribbon.ListForm.Edit-title {display:none:}

Badge +6

Thank you Andrew, will try it.

Badge +6

Hi Andrew,

Where would I do this? In the Custom CSS under settings?

Regards

Bhuti

Userlevel 7
Badge +17

Yes, it will be for the whole form.

  #Ribbon.ListForm.Edit-title

is the class selector that is already on the page, and

     {display: none;}

is the style to that will be set on a match if found

Test this on a dev box first to make sure it has the effects your looking for.

Badge +3

Tried this on Office 365 to no avail. What should the CSS look like to make this work in 365?


Thanks,

Userlevel 7
Badge +17

yes, under the CSS settings for the form. Also, I think the hash editor added the backslashes, those should be ignored.

Userlevel 6
Badge +13

This should help also.

Nintex Forms Hide the ribbon

Reply