xsl-list
[Top] [All Lists]

RE: issue with check box

2005-02-15 23:10:13
Hi,

  I am getting value of the check box when the form is 
posted. But not able to re populate it when  open the 
page.Pelase help me. 
myxml

<Root>
<RscOptions  RSC.BrokerageAccount="y">
</RscOptions>
</Root>

my xsl

<xsl:call-template name="YesNoRadio">
                        <xsl:with-param 
name="name">RSC.BrokerageAccount</xsl:with-param>
                        <xsl:with-param name="value">
                          <xsl:value-of 
select="/Root/RscOptions[(_at_)RSC(_dot_)BrokerageAccount]"/>
                        </xsl:with-param>

Here you bind $value to a RTF that contains line feed.

                      </xsl:call-template>  



<!-- Template used to create a YesNo RadioButton -->
      <xsl:template name="YesNoRadio">
              <xsl:param name="name"/>
              <xsl:param name="value"/>
              <xsl:param name="readOnly"/>
              <xsl:param name="monitorChange"/>
    <xsl:param name="onClick"/>
    <xsl:param name="id"/>
    <span style="white-space: nowrap;">
    <xsl:element name="input">
      <xsl:attribute name="id"><xsl:value-of 
select="$id"/></xsl:attribute>
      <xsl:attribute name="type">radio</xsl:attribute>
      <xsl:attribute name="value">1</xsl:attribute>
      <xsl:attribute name="name"><xsl:value-of 
select="$name"/></xsl:attribute>
      <xsl:if test="$value='1'">

And here you check if the $value is equal to string "1". Either your source has 
a bug or then you should be checking for something else-ditto for "No" input 
element.


Cheers,

Jarno - Feindflug: Bluthandwerk

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>