I have a Java Map
where I store data that has to be shown in a row in a table in a web application. I am using Wicket 6.
Is there a way to link Wicket Labels (which will be cells in my table) to the String
version of an object in a Map
knowing the key for each Label.
Should I implement my own version of IModel
or is there any convenience class in the Wicket 6 libraries? As far as I can see there is none, but I could be wrong...