Therefore, I want to use Wicket 1.5 to display the item and the quantity associated with it. The data structure that I use to support this map is a map (new HashMap ()), where Item is a POJ whose data does not matter. In fact, I would like to use one of the repeater gates, but I have experience using ListView. Is there a repeater that will work well with the Card, or will I need to encode my own? If I need to encode my own, what is the best class to override?
I would like the relay output to be something like this:
QuantityX: ItemName (ItemNum)
for example:
2x: someItem (255609)
The map may change through user input, but I am familiar with updating component layouts using AJAX through Wicket. Your help is greatly appreciated.
source
share