> I am using Tapestry 5.
I don't think so. Your code is using Tapestry 4 syntax.
Cheers,
Nick.
Imran Amajd wrote:
Hello EveryBody,
I am using Tapestry 5.
Problem:
There is a submit button attached with listener (say OnSave()) and a text
field after the Submit button on html form. like
<form>
<input jwcid="@Submit">
<input jwcid="@TextField" value="ognl:className.textValue">
</form>
when i submit this form, the pageBegin render is called, and form is
rewinded. then listner is callled. but i can not access the value the user
has enterd. then page begin render is again called and now i can see what
value user entered. Then i shift the @TextField Component before @Submit
Comp. like
<form>
<input jwcid="@TextField" value="ognl:className.textValue">
<input jwcid="@Submit">
</form>
Now in Listener, i can see what user has entered.
Is this a possible Tapestry BUG???? or there is something i m not getting
into it?
Please dont hesitate to give your feedback on it.
Thanks.
Imran Amjad.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]