Repetitive TextField Form into ListView?

2011-04-11 Thread Paolo
Hi, It is my first experience with Wicket. I try to do a e-commerce site, based on cheese shop from Wicket in Action Book. I have problem to implement shopping cart to set the quantity of each item that the user choose. As you can see in this screenshot, I put a TextField for quantity in a

Re: Repetitive TextField Form into ListView?

2011-04-11 Thread Martin Grigorov
The problem is in : TextField quantita = new TextField(quantita, quantitaMOD); replace quantitaMOD with something that is associated somehow with the currently iterated cheese object e.g. new PropertyModel(cheese, quantity) On Mon, Apr 11, 2011 at 12:47 PM, Paolo irresistible...@gmail.com