Skip to main content

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

Hi Priya,

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

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

Hope it helps.


It worked perfectly, thank you.


 


@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


Thanks, that worked!
Great forward thinking! This would have been my question, next week. lol

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


Reply