I need to make a request to orbeon forms without javascript support but it returns message “Your browser does not appear to support JavaScript. You may want to try one of the following”
I need this to print PDF with pd4ml. In orbeon 3.7 I got that message but the form was shown at the botton. In orbeon 3.9 I get the message but the form is not being show.
Is there a way to get the behavior of orbeon 3.7?
Thanks,
The reason the form is hidden is that it has an HTML class on the
<form>element,xforms-initially-hidden, which initially hides the form content until JavaScript code has run. If JavaScript is disabled, that class never goes away and the form remains hidden.If you override that CSS class to make the form initially visible, or if you remove the class altogether, things should work.