|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] [no subject]
i have html file which contain
<P>Choose a Category of Room: <UL> <INPUT TYPE="radio" NAME="category" VALUE="liv" CHECKED> Living <BR> <INPUT TYPE="radio" NAME="category" VALUE="din"> Dining <BR> <INPUT TYPE="radio" NAME="category" VALUE="bed"> Bedroom </UL> then i want that in wml as separate select lists like Specify your music preferences (check all that apply): R&B jazz Blues New Age Choose a Category of Room: Living Dining Bedroom my stylesheet is for input tag
<xsl:template match="//input">
<xsl:variable name="type" select="@type"/>
<xsl:variable name="name" select="@name"/>
<xsl:if test="$type='text' or $type='password' or
$type='radio' or $type='checkbox'">
<xsl:choose>
<xsl:when test="$type='radio'">
<select name={@name}>
<xsl:for-each select="input[{@name}=@name]"/>
<option
value={@value}><xsl:apply-templates/></option>
</xsl:for-each>
</select>
</xsl:when> <xsl:when test="$type='text'">
<input name="{@name}" type="{@type}">
<xsl:apply-templates/>
</input>
</xsl:when> <xsl:when test="$type='password'">
<input name="{@name}" type="{@type}">
<xsl:apply-templates/>
</input>
</xsl:whan>
</xsl:choose>
</xsl:if>
</xsl:template>using for each for radio as radio buttons will have the same name and using value-of select so that only the one group of things should come together and i am not getting how to write about check box as they can have different names. but it is not working if i remove <xsl:when test="$type='radio'"> <select name={@name}> <xsl:for-each select="input[{@name}=@name]"/> <option value={@value}><xsl:apply-templates/></option> </xsl:for-each> </select> </xsl:when> then it is working for these two input types (text and password) . i guess for each or value-of select is wrong or there are any other errors in the template match code. ashu
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








