Newbies bladesonfire Posted December 10, 2006 Newbies Posted December 10, 2006 I want something like this: <?xslt-cwp-query param="name=$client-user-name&-find"?> Is this possible? Thanks.
Martin Brändle Posted December 10, 2006 Posted December 10, 2006 No, it is not possible in the <?xslt-cwp-query?> processing instruction, because the $client-user-name parameter is not defined at this position, and according to FMI this instruction must be at the beginning of the stylesheet. But there is another solution. You have to use the XSLT document() (see FMSA CWP Guide, p. 61, loading additional documents) and the XPath concat() functions. Define first a variable like this: Use & instead of & in this query. This loads the XML tree returned by FMSA into the variable. Later you can reuse the variable in the same stylesheet: E.g. in a for-each loop: . . .
Recommended Posts
This topic is 6557 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now