I am trying to submit a form from inside a JavaScript function in Tapestry. Here is the tml file.
<!DOCTYPE html>
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd" xmlns:tx="tapestry-library:tapx">
<head>
<script type="text/javascript">
function bodyLoaded () {
document.form1.submit();
}
</script>
</head>
<body onload="bodyLoaded()">
<form t:type="form" t:name="form1">
<select t:type="select" t:id="reportType" t:model="literal:A, B"></select>
<input t:type="submit" id="clientSubmit" value="Generate"/>
</form>
</body>
</html>
But I am getting below error, and the form is not getting submitted.
document.form1 is undefined [Break on this error] document.form1.submit();
So I looked at the html code generated by Tapestry. It has following tag:
<form onsubmit="javascript:Tapestry.waitForPage(event);"
action="test.form" method="post" id="form" name="form">
So I changed document.form1.submit() to document.form.submit(), but still it didn't solve the problem. Is there anything wrong with my code (or) doesn't hibernate allow to submit the form from inside JavaScript functions?
