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/09/11 03:09:09 UTC

svn commit: r574440 - /incubator/xap/trunk/codebase/src/xap/widgets/dojo/GridPanel.js

Author: jmargaris
Date: Mon Sep 10 20:09:09 2007
New Revision: 574440

URL: http://svn.apache.org/viewvc?rev=574440&view=rev
Log:
no longer crashing in IE

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

Modified: incubator/xap/trunk/codebase/src/xap/widgets/dojo/GridPanel.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/codebase/src/xap/widgets/dojo/GridPanel.js?rev=574440&r1=574439&r2=574440&view=diff
==============================================================================
--- incubator/xap/trunk/codebase/src/xap/widgets/dojo/GridPanel.js (original)
+++ incubator/xap/trunk/codebase/src/xap/widgets/dojo/GridPanel.js Mon Sep 10 20:09:09 2007
@@ -118,10 +118,6 @@
 		cell.rowSpan = rowSpan;
 		cell.colSpan = columnSpan;
 		
-		cell.style.borderColor="red";
-		cell.style.borderStyle="solid";
-		cell.style.borderWidth="1px";
-		
 		if (constraints._vAlign=='start'){
 			cell.vAlign = 'top'; //TODO should this be style based?
 		}
@@ -142,12 +138,7 @@
 		
 		this.containerNode = cell;
 		xap.widgets.dojo.GridPanel.superclass.addChild.call(this,child);
-	},
-	
-	
-	 removeChild: function(child) {
-	 	//TODO now what?
-    }
+	}
 }
 );