Im using a CellTable to display my data. But my data has fields that is a collection of string. I wonder if there's any recommendation for this purpose. What do you do in this case?
Im using a CellTable to display my data. But my data has fields that is a collection of string. I wonder if there's any recommendation for this purpose. What do you do in this case?
You have to make a
Cell
(easiest is to extendAbstractCell
as you only have to implement thereder
method) that displays your data (i.e. serialize it to HTML).