Hey, > I'm using a table.model.Simple, qx.ui.table.cellrenderer.Boolean() and > qx.ui.table.celleditor.CheckBox(); to make a table who contains checkboxes > in each of it's cells. The problem is that for each row, I need to > automatically check and disable the rest of the checkboxes when the checkbox > of the first column is checked, and when the checkbox of the first column of > the row is unchecked, the others checkboxes are unchecked and enabled to > edit. > > Qooxdoo have methods like tableModel.setColumnEditable that only works with > a column of the entire table and and tableModel.setEditable that works with > all the table, therefore are not useful in this situation. > > Any ideas???
The table as it is does not offer such a feature. This means you have to extend some parts of the table to get that done. A quick check showed me that subclassing the pane of the table and overriding the _getRowsHtml method could be a good starting point. The table takes a method for creating the pane which is the way to inject your own class. Regards, Martin ------------------------------------------------------------------------------ Introducing Performance Central, a new site from SourceForge and AppDynamics. Performance Central is your source for news, insights, analysis and resources for efficient Application Performance Management. Visit us today! http://pubads.g.doubleclick.net/gampad/clk?id=48897511&iu=/4140/ostg.clktrk _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
