[
https://issues.apache.org/jira/browse/TAP5-930?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12785233#action_12785233
]
Peter Rietzler commented on TAP5-930:
-------------------------------------
Here is a simple tml that shows the problem
- clicking on the button triggers the correct behavior -> two messages
'onsubmit' and 'onsubmit from event handler'
- clicking on the link triggers only one message -> 'onsubmit' (any other event
handlers are not executed because in LinkSubmit.js only onsubmit is executed)
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd"
xmlns:p="tapestry:parameter" >
<body>
<t:form id="form" onsubmit="alert('onsubmit')">
<t:linkSubmit>Submit Form</t:linkSubmit>
<t:submit/>
</t:form>
<script type="text/javascript">
$("form").addEventListener("submit", function() {
alert('onsubmit from event handler');
}, false);
</script>
</body>
</html>
> linksubmit does not fire sumbit event in 5.1.0.5
> ------------------------------------------------
>
> Key: TAP5-930
> URL: https://issues.apache.org/jira/browse/TAP5-930
> Project: Tapestry 5
> Issue Type: Bug
> Affects Versions: 5.1
> Environment: java 1.6
> windows 7
> tapestry 5.1.0.5
> firefox 3.5 or google chrome
> Reporter: Sergey Kashin
> Priority: Critical
> Attachments: linksubmit.js
>
>
> linksubmit does not fire sumbit form
> where is no any action
> if i change linksubmit to submit buttom all works fine
> Template:
> ----------------------------------------------------------------------------------
> <?xml version="1.0" encoding="windows-1251"?>
> <html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"
> xmlns:p="tapestry:parameter">
> <t:form t:id="frm" >
> <t:textfield value="txt"></t:textfield><br/>
> <t:linksubmit t:id="save" >Save</t:linksubmit> . <t:linksubmit
> t:id="cancel" >Cancel</t:linksubmit>
> </t:form>
> </html>
> ----------------------------------------------------------------------------------
> java code:
> ----------------------------------------------------------------------------------
> private Object formEventReturn;
> @Property
> private String txt;
> void onSelectedFromSave() {
> // do whatever;
> formEventReturn = Index.class; // go to AnotherPage
> }
> void onSelectedFromCancel() {
> // do whatever
> formEventReturn = null; // stay on this page
> }
> Object onSuccessFromFrm() {
> //do things specific to form Foo
> return formEventReturn;
> }
> ----------------------------------------------------------------------------------
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.