Skip to main content
Nintex Community Menu Bar
Question

Hide Done" Button on Template Field Custom Pop-Up"

  • July 9, 2024
  • 1 reply
  • 3 views

Forum|alt.badge.img+4

When I create a custom pop-up for a template field, there is the “Done” button which I can’t seem to remove. I’d like to replace it with our own custom buttons. Is this possible?

Thanks,

1 reply

Forum|alt.badge.img+7

So a kludge I found for this is to put in a custom CSS rule:

/* Prevent Done button from appearing in pop ups */ .ui-dialog-buttonpane.ui-widget-content.ui-helper-clearfix { display : none; }<br>


Though this is brittle against any changes Skuid make to the HTML structure or CSS classes.

I then put my own buttons into the pop up.

Ideally this should be supported as standard with the custom pop up…