Re: Updating a Field on event in Tapestry5

2011-03-11 Thread gauravchopra
Thanks for your help Josh!! I have used the OnEvent component of chenillekit and implemented the same. -- View this message in context: http://tapestry-users.832.n2.nabble.com/Updating-a-Field-on-event-in-Tapestry5-tp6157127p6161110.html Sent from the Tapestry Users mailing list archive at

Updating a Field on event in Tapestry5

2011-03-10 Thread gauravchopra
Hi I am new to Tapestry, I am using Tapestry 5.2.2 version. I have a requirement to update another textfield on blur event of a field. for example: say I have 2 fields TextField A TextField B Enter any value in TextField A, a server call will be made and update the Textfield B. Appreciate

Re: Updating a Field on event in Tapestry5

2011-03-10 Thread LLTYK
Define update another textfield. Are you putting some result from the server in it? Read up ZoneUpdater: http://jumpstart.doublenegative.com.au/jumpstart/examples/javascript/ajaxonevent Although it's annoyingly tricky to refresh form fields. The example refreshes some plain text. -- View this

Re: Updating a Field on event in Tapestry5

2011-03-10 Thread Josh Canfield
I am new to Tapestry, I am using Tapestry 5.2.2 version. I have a requirement to update another textfield on blur event of a field. Generally I would write a bit of javascript that watches for the blur event and move the data over. Enter any value in TextField A, a server call will be made