I think what I'm not understanding is how to create the getValue
portion of the column creation before I add the column to the cell
table when it isn't pre-defined. When I have code like:
TextColumn<ResultDocument> fieldsColumn = new
TextColumn<ResultDocument>() {
@Override
public String getValue(ResultDocument resultDoc) {
return resultDoc.documentFields;
}
};
I can see easily what to do but when that column is accessing the (for
example) 8th value in a String [] then I can't see it. This is
probably my newness to Java (again).
On Jul 28, 12:22 pm, Magno Machado <
magn...@gmail.com> wrote:
> You just have to read whatever information you need and then just call
> yourCellTableInstance.addColumn(...) as needed
>