Re: Autocomplete text concatenation

2008-12-15 Thread francisco treacy
if i understand correctly you need a multi autocompleter. do you mean something like this? http://digitarald.de/project/autocompleter/1-1/showcase/delicious-tags/ (i have integrated it with wicket, it's indeed used when you edit topics of a module in wickethub). francisco On Mon, Dec 15, 2008

Re: Autocomplete text concatenation

2008-12-15 Thread Nino Saturnino Martinez Vazquez Wael
This is also something you can do with object autocomplete from Wicketstuff francisco treacy wrote: if i understand correctly you need a multi autocompleter. do you mean something like this? http://digitarald.de/project/autocompleter/1-1/showcase/delicious-tags/ (i have integrated it with

Re: Autocomplete text concatenation

2008-12-15 Thread Graeme Knight
Hi there! Something like that - but I was hoping it might be easy to somehow do this with autocompletetextfield from wicket extensions - I guess there may be a little trickery to manipulating the unsubmitted text in the textfield itself (although this comes in as the input for getChoice so I was

Re: Autocomplete text concatenation

2008-12-15 Thread Graeme Knight
One idea I had was to do something like the following code: This class would be added to the AutocompleteTextField (as below). inputSoFar would be the input to the getChoices() method minus the string we are looking for, so for example: fred,jim,b inputSoFar would be 'fred,jim'. input