Hide whole wizard container?

Hi team, is there a method to hide a multi-tab wizard container? I'm validating some parameters in javascript, and if the parameters aren't valid then I want to hide the whole wizard container so the user can't do anything.

Thanks
Mark

Hello @RME,

You can add a CSS class to the wizard container cell, e.g. wizard-to-hide.

And show/hide the container dynamically using the code:

//hide the cell and its content
$('.wizard-to-hide').hide();

//show the cell and its content
$('.wizard-to-hide').hide();