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.

-- 
View this message in context: 
http://www.nabble.com/Submitting-Html-Form-is-not-working-properly-in-Tapestry-5-tf4736056.html#a13543685
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to