Using v9.3.1.
I am referring to the Sawtooth Software previous button, not the browser back button.
I would like to perform the following ...
If TYPE=1 display the back button for all survey pages.
If TYPE=2 do not display the back button for all survey pages.
I know I can hide the previous button under survey settings but that is across all surveys.
I know I can use RemovePrevious() on various pages to hide the previous button and apply some Perl as such but I do not want to pop this on all survey pages, especially if an easier method is available to me.
[% Begin Unverified Perl
if (VALUE("TYPE")==2)
{
REMOVEPREVIOUS();
}
End Unverified %]
Is their a global approach where I can apply something like the Perl above or maybe some CSS to throw into the HTML head tag?
Thanks.