vote up 1 vote down star

I have something like this:

$('#output').xslt({xml: 'x',xslUrl: 'Test.xsl'});

How do I pass a parameter to the Test.xsl file and retreive the same url in the xsl file?

I am using the jquery libraries : jquery.1.1.3.js and jquery.xslt.js

Or is there any way i cud send a parameter to my xsl file via js or jquerry ?

flag

3 Answers

vote up 0 vote down

From reading the documentation, it simply doesn't look like parameters / external inputs are supported.

link|flag
but the library uses xslProcessor() and u can add a parameter via this function .. so there must be a way out – ashi Apr 9 at 10:53
this doesnt work as i cant retrieve the parameter in my xsl file ... – ashi Apr 9 at 10:53
vote up 1 vote down

Add the URL to the XML file you are transforming with the XSL stylesheet.

link|flag
vote up 1 vote down

Solution: Used another jQuery library which provided an option to pass parameters to the XSL file:

  • jquery-1.3.2.min.js
  • jquery.transform.js

Code:

$.transform({
  datatype : "xml",
  el       : "#output",
  async    : false, 
  xmlstr   : [ xmlDoc ], 
  xsl      : 'Test.xsl', 
  xslParams: {
    abc: "value",
    pqr: "valu2"
  }
});

Using xslParams I can pass the parameters. Using <xsl:param> I can retrieve the parameters in my XSL:

<xsl:param name="abc" />

This <xsl:param> must be globally declared in your XSL.

link|flag

Your Answer

Get an OpenID
or

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