Re: AutoCompleteTextField: converter seems to be ignored

2010-08-20 Thread Wilhelmsen Tor Iver
However, wicket never calls the getConverter() method and simply uses SomePOJO.toString() to retrieve the text for the choices. What am I doing wrong? One possibility is that in all the nested classes in the typical Wicket source file you have added the method to the wrong class. Try adding

AutoCompleteTextField: converter seems to be ignored

2010-08-19 Thread Alexandros Karypidis
Hi, I'm using AutoCompleteTextFiled with Wicket 1.4.9. My model is a POJO that is specified as a generic: searchTextField = new AutoCompleteTextFieldSomePOJO(... Therefore I return an Iterator of such POJOs with: protected IteratorSomePOJO getChoices(String input) {