> So yes, I is not that easy to get access to the old method... mhh.
> Maybe you can store yourself the old reference...
That's what I've done when patching in the old qooxdoo.
For example:
//
// Remember old _updateContent function
//
qx.ui.table.TablePaneScroller.prototype._unsafe_updateContent =
qx.ui.table.TablePaneScroller.prototype._updateContent;
//---------------------------------------------------------------
/**
* New _updateContent function that checks for disposed table.
* This is needed because _updateContent can be called after all
* processing has been finished, which might include destruction
* of the table.
*/
//---------------------------------------------------------------
qx.ui.table.TablePaneScroller.prototype._updateContent = function()
{
//
// Is the table disposed?
//
if (this.isDisposed())
{
return; // bomb out
};
//
// Otherwise call normal _updateContent
//
this._unsafe_updateContent();
};
Hugh
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel