xsl-list
[Top] [All Lists]

[xsl] onChange does not funtioning?

2008-05-15 03:33:28
Hi,
I have:

        <form action="Default.aspx"    runat="server">


<select name="SelectCategories">
                  <xsl:attribute name="onChange">form.submit()</xsl:attribute>
                  <xsl:for-each 
select="document('../content/en//categorycodes.xml')/catcodes/category">
                    <option>
                      <xsl:attribute name="value">
                        <xsl:value-of select="@code"/>
                      </xsl:attribute>

                      <xsl:value-of select="."/>
                    </option>
                  </xsl:for-each>
                </select>



</form>

onChange is not reacting.
Should I use javascript instead?
Thanks
Nenad

--~------------------------------------------------------------------
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>
--~--