Tapestry 5 AutoComplete

2014-11-04 Thread Shahid Shaikh
I am trying to use the AutoComplete in conjuction with a Zone updater.It appears if i tag a t:clientId where i generated a unique id for each field, the autocomplete fails to work. If i do not use the t:clientId the component works just fine. Any idea why add a t:clientId tag to my input ca

Re: Tapestry Expansion

2014-09-19 Thread Shahid Shaikh
Thank you Thiago for your response back From: Thiago H de Paula Figueiredo [via Apache Tapestry Mailing List Archives] To: shahidsan Sent: Friday, September 19, 2014 11:08 AM Subject: Re: Tapestry Expansion On Fri, 19 Sep 2014 11:19:58 -0300, Shahid

Tapestry Expansion

2014-09-19 Thread Shahid Shaikh
How to get properties value in an external javascript file? Example: I have this in my external JS file. var link = "$(theLink)"; It does not expand. Thank you for your help!

ZoneUpdater

2014-08-21 Thread Shahid Shaikh
Fellow Tapestry Users, I have the following code in Tapestry             Bascially the issue i am running into is if the user goes and backspaces the contents of the textfield, my event , updateConditionCode fires, but the parms passed into the event are null! H

Re: Tapestry AJAX call on submit

2014-07-23 Thread Shahid Shaikh
Thank you for that clarification again. So just to be clear, once i have javascript handle the call to the external url, and process the data. Once i do form.submit() in javascript, my OnSubmitForm event in Tapestry will still get triggered? From: Thiago H de

Tapestry AJAX call on submit

2014-07-22 Thread Shahid Shaikh
Fellow Tapestry Users, I have a form that when submitted needs to make a call to an external service (calling a URL that will return a value of type string) which i will then add to the form data and do the actual submit. What is the best way to handle this in Tapestry? So for e.g     @Log