Title says it all. Can I conditionally include javascript file and css files.

<xbl:script src="/apps/xforms-sandbox/samples/myfile.js" />

Can this be done conditionally?

link|improve this question

56% accept rate
feedback

1 Answer

up vote 0 down vote accepted

At this point, in Orbeon Forms, you can't conditionally include scripts with <xbl:script> or CSS with <xbl:style>. To include dynamic resources, use HTML the elements <xhtml:script> and <xhtml:style> you generate with XSTL, inside the <xbl:template> of your XBL component. If you can use static resource, you should:

  1. To avoid duplication — If you have multiple instances of your component when the page is loaded, then the same JavaScript or CSS will end up being included multiple times in the page. You might say: well, but this is the case anyway when using <xbl:script> and <xbl:style>. Yes, but this is a bug, which hopefully we'll get a chance to fix soon.
  2. To benefit from automatic minimization and combination — We are planning to automatically combine and minimize the resources references in XBL components, just like we do for resources used by the core XForms engine itself. You will be able to benefit from this feature when it lands in the codebase if you use <xbl:script> and <xbl:style>.
link|improve this answer
Please look at this response. Syntaxhighlighter supports many languages and each requires its own js and css file. If xform user is trying to display XML it doesn't make sense to include other js and css files. orbeon-forms-ops-users.24843.n4.nabble.com/… A cleaned up version is available at github.com/binnyg/orbeon-xbl-samples – BinnyG Nov 17 '10 at 2:39
Understood: you have a valid case for dynamic resources. I updated my answer to mention that using HTML the elements <xhtml:script> and <xhtml:style> you generate with XSTL, inside the <xbl:template> of your XBL component is the way to go. – avernet Nov 24 '10 at 1:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.