Try one of the following: - on the table itself, you can invoke recipeTable.setFocusable(false) - on the *row renderer* for that table, you can invoke .setHighlightFocusRow(false). Check the Table API how to get at the row renderer (I think it's something like getDataRowRenderer().
I'm surprised to hear that recipeTable.highlightFocusedRow(false) would not work. If you can reproduce this behaviour in a small example, it might merrit a bug report. T. Ken MacDonald wrote: > I have a table on my page (qx.ui.table.Table) which displays two > columns of info, amount and ingredients for recipes. > > Currently, if I click the mouse on a row of the recipe table, the row > is highlighted. I've tried both of these: > > this.recipeTable.releaseCapture(); // supposed to disable mouse > events??? > this.recipeTable.highlightFocusedRow(false); > > to disable this. If I click on a row I'd like no visible change. So > far the only thing that's helped is setEnabled(false), but that > disables the scrollbar and I think the column divider if my recipe is > too long or the columns need to be adjusted. > > Is there a way to disable highlights without disabling the table controls? > Ken > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9-12, 2009. Register now! > http://p.sf.net/sfu/devconf > ------------------------------------------------------------------------ > > _______________________________________________ > qooxdoo-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel > ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
