tapestry 5.3.6 using autocomplete component problem

2013-05-01 Thread Shuu Johnny
When I want to do the tapestry autocomplete example, I face these trouble. start- An unexpected application exception has occurred. Method example.hellotapestry.pages.AutoCompleteComp.onProvideCompletionsFromCompInput(java.lang.String) references

Re: tapestry 5.3.6 using autocomplete component problem

2013-05-01 Thread Emmanuel DEMEY
The xsd file you are using seems wrong. Can you use tapestry_5_3.xsdhttp://tapestry.apache.org/schema/tapestry_5_3.xsd instead. I am not sure it is the solution to your problem. Manu 2013/5/1 Shuu Johnny johnnys...@gmail.com When I want to do the tapestry autocomplete example, I face these

Re: T5: How to use the Autocomplete component?

2010-10-13 Thread ael
Guys Check this out hehehe http://lombok.demon.co.uk/tapestry5Demo/test/autocomplete/onesource I hope Tapestry Its developers make documents like this ^_^. -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-How-to-use-the-Autocomplete-component-tp2413813p3210127.html

Re: Autocomplete component

2008-05-21 Thread Marcus
Hi, Using autocomplete mixin, how do we know, if an option of the list provided was selected, or if user has entered another text? Would be great if some event was fired on server side when user select one of option provided by mixin. Thanks, Marcus

Autocomplete component

2008-05-20 Thread Manuel Corrales
Hi, i have s doubt about autocomplete component. According to the documentation, you can return a list of any objects on the onProvideCompletions, my question is, when i choose a value, this value is going to be the object from that list? or just a string and i have to make a match beetwen

Re: Autocomplete component

2008-05-20 Thread Josh Canfield
Corrales [EMAIL PROTECTED] wrote: Hi, i have s doubt about autocomplete component. According to the documentation, you can return a list of any objects on the onProvideCompletions, my question is, when i choose a value, this value is going to be the object from that list? or just a string and i have

Re: Autocomplete component

2008-05-20 Thread Manuel Corrales
is not possible, as far as I could find. Josh On Tue, May 20, 2008 at 4:06 PM, Manuel Corrales [EMAIL PROTECTED] wrote: Hi, i have s doubt about autocomplete component. According to the documentation, you can return a list of any objects on the onProvideCompletions, my question

Re: T5: How to use the Autocomplete component?

2007-12-28 Thread Joshua Jackson
Dear all, I would like to recall that Autocompleter works on IE. Has anyone tried it on Firefox or any other browser? Thanks in advance. On 12/28/07, Joshua Jackson [EMAIL PROTECTED] wrote: Dear all, I already try to follow what's written on the document regarding how to use Autocomplete

Re: T5: How to use the Autocomplete component?

2007-12-28 Thread Joshua Jackson
I know. Perhaps this is due to the incompatibility of scriptaculous library. :( :sigh: On 12/28/07, Angelo Chen [EMAIL PROTECTED] wrote: Hi Joshua, I tried your sample, it does not work in IE/Firefox/Safari, maybe I miss something, I can see calls to the server :

Re: T5: How to use the Autocomplete component?

2007-12-28 Thread Mohammad Shamsi
Hi Joshua, i think that your method names is wrong, your textfield on template has no t:id, try it with t:id=clientName onProvideCompletionsFromClientName On Dec 28, 2007 2:25 PM, Joshua Jackson [EMAIL PROTECTED] wrote: I know. Perhaps this is due to the incompatibility of scriptaculous

Re: T5: How to use the Autocomplete component?

2007-12-28 Thread Mohammad Shamsi
when web application has a context other that ROOT, i got this error. i test this sample with ROOT context, in FireFox successful. but when if i set any context name instead of / i got this java script error : Tapestry.onDOMLoaded is not a function it seems that .js files path is incorrect.

Re: T5: How to use the Autocomplete component?

2007-12-28 Thread Angelo Chen
] -- sincerely yours M. H. Shamsi -- View this message in context: http://www.nabble.com/T5%3A-How-to-use-the-Autocomplete-component--tp14522247p14533231.html Sent from the Tapestry - User mailing list archive at Nabble.com

T5: How to use the Autocomplete component?

2007-12-27 Thread Joshua Jackson
Dear all, I already try to follow what's written on the document regarding how to use Autocomplete component, but still can not get it working. Here's what I've done: Template: input t:type=TextField t:value=prop:clientName t:mixins=autocomplete / Page: private String clientName