Thank you for replying.
I Moved the script element inside of the body.Still submit is not
working and I am not getting any error from browser/firebug.So I am
really confused now what I am missing here.the same code submits the
form If I execute it as HTML.
On Sat, Feb 28, 2009 at 8:24 PM, Martin Honnen
<Martin(_dot_)Honnen(_at_)gmx(_dot_)de> wrote:
himanshu padmanabhi wrote:
and this is my modified XSL file which is generating above html code.
It shows table with all elements as expected.Only form.submit not working.
please help.Is there any other way of form.submit.
Should I use hidden button to submit?
<xsl:template match="Records">
<html>
<body>
<form name="form1" method="POST" action="one.cgi">
<tr>
<td>
<xsl:value-of select="label1"/>
</td>
<td>
<xsl:value-of select="desc1"/>
</td>
<td>
<xsl:if test="label1 = 'machine name'">
<select name="machine_name">
<xsl:call-template name="str:tokenize">
</xsl:call-template>
</select>
</xsl:if>
</td>
</tr>
<tr>
<td>
<xsl:value-of select="label2"/>
</td>
<td>
<xsl:value-of select="desc2"/>
</td>
<td>
<xsl:if test="label2 = 'limit'">
<input type="text" name="limit" value="" />
</xsl:if>
</td>
</tr>
</form>
</body>
</html>
<script type="text/javascript">
document.form1.submit();
</script>
</xsl:template>
Move the script element inside of the body
</form>
<script type="text/javascript">
document.forms.form1.submit();
</script>
</body>
</html>
Also check the error console of your browser whether it shows any errors
when the code does not work.
--
Martin Honnen
http://JavaScript.FAQTs.com/
--~------------------------------------------------------------------
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>
--~--
--
Regards,
Himanshu Padmanabhi
--~------------------------------------------------------------------
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>
--~--