This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: using a parameter as filterexpression element


> hmm, tricky this, I have an variable like this
> 
>      <xsl:variable name="selection_all" select="//header[Sender =
> $current_user]"/>
> 
> and want to make it so that instead of the Sender element in 
> the filter it
> takes a the element to filter against as an parameter, like
> 
> 
>      <xsl:variable name="selection_all" select="//header[$TheElement =
> $current_user]"/>

You want select="*[local-name()=$TheElement and .=$current_user]"

Mike Kay
Software AG 

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]