Re: Problem with palette components

2009-12-31 Thread Ernesto Reinaldo Barreiro
Hi Victor Can you provide more info? E.g. How your are defining your palette? Or the exception you get? Without more information there is little else I can suggest... Best, Ernesto On Thu, Dec 31, 2009 at 6:09 PM, victorTrapiello wrote: > > Hello Eranesto, > I was trying to use the method ("ge

Re: Problem with palette components

2009-12-31 Thread victorTrapiello
Hello Eranesto, I was trying to use the method ("getselectedChoices"), but I´m facing more problems, look a simple example: Iterator iter = palette.getSelectedChoices(); while (iter.hasNext()) { System.out.println(iter.next()); } it only prints the fi

Re: Problem with palette components

2009-12-29 Thread Ernesto Reinaldo Barreiro
Did you tried Palette.getSelectedChoices() method? It will return an Iterator where T is the type of Model object. Ernesto On Tue, Dec 29, 2009 at 8:09 PM, victorTrapiello wrote: > > Hello guys I´m new in the Wicket world, I´m developing an online > application > with my development team, we are

Re: Problem with palette components

2009-12-29 Thread victorTrapiello
Hello guys I´m new in the Wicket world, I´m developing an online application with my development team, we are using the component "Palette", we display the palette on the screen but we can´t/ we do not know how to get the list of choices that we have selected, we have tried like in the example wit