On Tue, Apr 27, 2010 at 09:47, Fritz Zaucker <[email protected]> wrote:
> Hmm, just found an answer: table.updateContent() does the job.
>
> So lets rephrase the question: is this the "proper" way of handling such a
> situation? Or is there something more efficient (I know which cell or row
> to
> redraw).
>
The way you're doing it is the "proper" way of handling such a situation
without getting deep down into the bowels of the table implementation. I
very much doubt you'll see any speed improvement, but you can try this:
var scrollerArr = table._getPaneScrollerArr();
for (var i=0; i<scrollerArr.length; i++)
{
scrollerArr[i].getTablePane().updateContent(false, null,
rowNumberToUpdate);
}
Derrell
------------------------------------------------------------------------------
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel