Skip to main content
Nintex Community Menu Bar

Hide SharePoint Ribbon on Dialog Form

  • November 24, 2020
  • 1 reply
  • 84 views

Forum|alt.badge.img+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

  • April 9, 2021

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);

});