You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's an excellent idea. We already have this with xpath(String, Object...) as well. Would you be interested in having a stab at a pull request for this?
Currently we can do this:
$(person).transform("say.xsl")
But if xslt has params, say.xsl contains
<xsl:param name="word" value="hi"/>
We could do this:
Map params=new HashMap();
params.put("word","hello");
$(person).transform("say.xsl",params);
At this moment, i have a verbose class to do this.
The text was updated successfully, but these errors were encountered: