Skip to main content

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

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