You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by jm...@apache.org on 2007/04/04 21:11:54 UTC

svn commit: r525604 - /incubator/xap/trunk/codebase/src/xap/widgets/dojo/TreeTable.js

Author: jmargaris
Date: Wed Apr  4 14:11:54 2007
New Revision: 525604

URL: http://svn.apache.org/viewvc?view=rev&rev=525604
Log:
resizeTableLater() calls did not need to be scheduled later
in some cases, taken from https://issues.apache.org/jira/browse/XAP-357

Modified:
    incubator/xap/trunk/codebase/src/xap/widgets/dojo/TreeTable.js

Modified: incubator/xap/trunk/codebase/src/xap/widgets/dojo/TreeTable.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/codebase/src/xap/widgets/dojo/TreeTable.js?view=diff&rev=525604&r1=525603&r2=525604
==============================================================================
--- incubator/xap/trunk/codebase/src/xap/widgets/dojo/TreeTable.js (original)
+++ incubator/xap/trunk/codebase/src/xap/widgets/dojo/TreeTable.js Wed Apr  4 14:11:54 2007
@@ -277,7 +277,7 @@
 		this._rebuildRowsTask = null;
 		
 		// resize columns in the case of new rows added
-		this._resizeTableLater ();
+		this._resizeTable ();
 		this._recolorAlternateRows();
 	},
 	
@@ -354,7 +354,7 @@
 		this._rebuildBody();
 		window.clearTimeout(this._rebuildTableTask);
 		this._rebuildTableTask = null;
-		this._resizeTableLater();
+		this._resizeTable();
 	},
 	
 	_rebuildRow: function( row, depth, alternateRow ){