[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Using the xsl:if correctly

Subject: Using the xsl:if correctly
From: "Kerry Nice (DEN)" <Kerry.Nice@xxxxxxxxxxx>
Date: Fri, 11 Feb 2000 12:40:13 -0500
kerry nice
Title: Using the xsl:if correctly

Hi,
I am trying to write some XSL that allows me to specify how the data should be displayed based on the attributes in the given XML.  I have been able to use the xsl:if to get a working solution, but I would like to be able to do something a little more generic.  Unfortunately, either the xsl:if doesn't support it, or I have been doing it wrong.  How do I fix this?

Current XML:
<column name="model" type="String" description="Auto Model" in_textbox="true">Mustang</column>
<column name="vintag" type="String" description="VIN Number" in_textarea="true">abc</column>

desired XML:
<column name="model" type="String" description="Auto Model" field_type="textbox">Mustang</column>
<column name="vintag" type="String" description="VIN Number" field_type="textarea">abc</column>


current XSL:
<!-- test to see whether the value goes in a textarea or text field -->
<xsl:if test="@in_textbox">
  <td><INPUT TYPE="text" Name="{$table_name}:{$column_name}" Value="{$field_name}"/></td>
</xsl:if>
<xsl:if test="@in_textarea">
  <td><textarea Name="{$table_name}:{$column_name}" ROWS="4" COLS="40"><xsl:value-of select='.'/></textarea></td>
</xsl:if>

desired XSL:
???

Thanks,
Kerry.

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.