Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.2
-
None
Description
This is a clone of TAP5-389 which was closed as CNR. This still IS an issue with 5.2-SNAPSHOT. Clicking on the link generated by linksubmit in the following example will not trigger linksubmit's selected event. The output is always just "form was submitted".
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd">
<t:form zone="zone">
<t:zone t:id="zone">
<t:select value="type" />
<t:linksubmit t:id="submit">submit</t:linksubmit>
</t:zone>
</t:form>
</html>
public class Test
{
public enum Types
@Property private Types type;
void onSelectedFromSubmit()
{ System.out.println("linksubmit was used"); }void onSuccess()
{ System.out.println("form was submitted"); }}
Attachments
Attachments
Issue Links
- is a clone of
-
TAP5-389 Linksubmit doesn't work inside a form with Zone parameter set
- Closed