Hide SharePoint Ribbon on Dialog Form

  • 24 November 2020
  • 1 reply
  • 37 views

Badge +3

Is it possible to hide the SharePoint ribbon on a form that opens up in the dialog mode?

Currently using the below js which works in full page mode but would like to have the same behavior for the popup forms: 

NWF$(document).ready(function()
{
NWF$("#s4-ribbonrow").hide();

});

 

 

Nintex Forms 2013 v2.11.9.0


1 reply

Have you found a solution? I am facing the same problem.


 


Edit: You can resolve it with a timeout:


NWF$(document).ready(function(){


setTimeout(function(){
NWF$('#s4-ribbonrow').hide();


},300);


});

Reply