Hello,

I want to display a table from a list a model object.
One of the property of the model object is a code.
Those codes should be substituted in the webpage (front tier) with
corresponding user friendly labels.

I'm using some code like this:

IColumn[] columns = new IColumn[6];
...
columns[2] = new TextFilteredPropertyColumn(new Model("code"), "code",
"code");
...


DefaultDataTable table = new DefaultDataTable("table", columns,
dataProvider, 50);

What kind of mechanism shoul I use to achieve that?
Is there a specific class made for this purpose?

Thanks a lot,
Ox


-- 
View this message in context: 
http://www.nabble.com/Table-Column-Code-Replacement-Values-tf4035666.html#a11464794
Sent from the Wicket - User mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to