RE: Contextual autoCompleteTextField

2008-06-25 Thread Hoover, William
Are you referring to something like http://issues.apache.org/jira/browse/WICKET-488? -Original Message- From: Bertrand DATAS [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 4:21 AM To: users@wicket.apache.org Subject: Contextual autoCompleteTextField Hello everybody, Do you kn

Re: Contextual autoCompleteTextField

2008-06-25 Thread Bertrand DATAS
Not really because i dont want to use the onselect of this component but to use the content of two other fields to construct the list that will be displayed in my AutoCompleteTextField. 2008/6/25 Hoover, William <[EMAIL PROTECTED]>: > Are you referring to something like > http://issues.apache.org

RE: Contextual autoCompleteTextField

2008-06-25 Thread Hoover, William
What is stopping you from using the models from the other fields when constructing your list? -Original Message- From: Bertrand DATAS [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 8:05 AM To: users@wicket.apache.org Subject: Re: Contextual autoCompleteTextField Not really

Re: Contextual autoCompleteTextField

2008-06-25 Thread Bertrand DATAS
From: Bertrand DATAS [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 25, 2008 8:05 AM > To: users@wicket.apache.org > Subject: Re: Contextual autoCompleteTextField > > Not really because i dont want to use the onselect of this component but > to use the content of two other fiel

RE: Contextual autoCompleteTextField

2008-06-25 Thread Hoover, William
()); } } -Original Message- From: Bertrand DATAS [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 10:25 AM To: users@wicket.apache.org Subject: Re: Contextual autoCompleteTextField yes i could do like that but my field are generated in a listview so how can I retrieve

Re: Contextual autoCompleteTextField

2008-06-25 Thread Bertrand DATAS
IL PROTECTED]>: > > > What is stopping you from using the models from the other fields when > > constructing your list? > > > > -----Original Message----- > > From: Bertrand DATAS [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, June 25, 2008 8:05 AM > > To:

Re: Contextual autoCompleteTextField

2008-06-27 Thread Bertrand DATAS
rayList(); >> final Iterator items = yourView.iterator(); >> if (items != null) { >>while (items.hasNext()) { >>yourViewModelObjects.add((YourModelObject) >> items.next().getModelObject()); >> } >> } >> >> >> -Original Message- >&

RE: Contextual autoCompleteTextField

2008-06-27 Thread Hoover, William
can you post the code? -Original Message- From: Bertrand DATAS [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2008 11:00 AM To: users@wicket.apache.org Subject: Re: Contextual autoCompleteTextField in fact i have a problem with that because i am using the listview(which you called