Reputation: 21
I am trying to display rows of my tables in different colors . Please help me to achieve this. Please provide sample code to do same. Thanks.
Regards, vyankatesh
Upvotes: 2
Views: 394
Reputation: 23536
Vyankatesh,
you probably saw the answers on the qooxdoo mailing list.
To sum it up here: You either create your own RowRenderer and set it via qx.ui.table.Table.setDataRowRenderer(). Or you set up a conditional CellRenderer and set it via qx.ui.table.Table.getTableColumnModel().setDataCellRenderer(). (There might be a unified way to do either through the Table or the TableModel, but I'm not aware of it).
Upvotes: 2