Skip to main content
Nintex Community Menu Bar

quick launch visible when editing a nintex form

  • July 8, 2015
  • 6 replies
  • 33 views

Forum|alt.badge.img+4

Hi,

 

I want to hide the quick launch of the left hand navigation within sharepoint 2013, when a user creates/amend a form.

They don't need access to it so it would just confuse them. Is there a easy way to disable this just for when a user evokes a nintex form.

 

Screen shot below

 

95809_pastedImage_0.png

 

 

 

Thanks for your help

 

Priya

6 replies

Forum|alt.badge.img+11
  • Scholar
  • July 8, 2015

Hi Priya,

In the Form settings, expand the Javascipt section and add this:

NWF$("#sideNavBox").hide();

Hope it helps.


Forum|alt.badge.img+4
  • Author
  • Nintex Partner
  • May 12, 2016

It worked perfectly, thank you.


cabeza
Forum|alt.badge.img+3
  • Novice
  • March 2, 2019

 


@kapilkjoshi

thank you, it worked for me,

also i added the below to hide the top ribbon:

/*Hide Contaner Ribbon*/

NWF$(document).ready(function()
{
NWF$("#RibbonContainer").css("display","none");
}
);

so now No contaner ribbon nor left navigation, only the form


Forum|alt.badge.img
  • April 27, 2020
Thanks, that worked!

Forum|alt.badge.img
  • April 27, 2020
Great forward thinking! This would have been my question, next week. lol

Forum|alt.badge.img
  • July 17, 2020

Where are the form settings?  I'm using the default nintex form for data input and the quick launch navigation is present.  I want to remove it. 

 

How do I do this?@kapilkjoshi