Re: [qooxdoo-devel] Custom row renderer

2014-09-18 Thread Tobias Oberrauch
Great. Thank you for sharing your solution, William. Cheers Tobias Am 18.09.2014 14:04, schrieb woprandi: > Hi Tobias, > > I found the solution this morning. I needed to override > updateDataRowElement() method also. > I updated the playground example http://tinyurl.com/mtbhhfb > > > > -- > View

Re: [qooxdoo-devel] Custom row renderer

2014-09-18 Thread woprandi
Hi Tobias, I found the solution this morning. I needed to override updateDataRowElement() method also. I updated the playground example http://tinyurl.com/mtbhhfb -- View this message in context: http://qooxdoo.678.n2.nabble.com/Custom-row-renderer-tp7586193p7586196.html Sent from the qooxdoo

Re: [qooxdoo-devel] Custom row renderer

2014-09-18 Thread Tobias Oberrauch
Hi, I think the reason is that rowInfo.focusedRow and this.getHighlightFocusRow() returns true. Have you tried to on an listener on changeSelection: table.getSelectionModel().addListener('changeSelection', function () {...}); Cheers Tobias Am 17.09.2014 13:13, schrieb woprandi: > HI, > > I have

[qooxdoo-devel] Custom row renderer

2014-09-17 Thread woprandi
HI, I have a table and I would like to change the background color of the row when I edited a value. I have a boolean field in my row model which is set to true after a cell editing. I derived the default row renderer class but the behavior is very strange. See this playground example : http://tin