From xap-commits-return-1519-apmail-incubator-xap-commits-archive=incubator.apache.org@incubator.apache.org Tue Sep 11 03:09:33 2007 Return-Path: Delivered-To: apmail-incubator-xap-commits-archive@locus.apache.org Received: (qmail 76533 invoked from network); 11 Sep 2007 03:09:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Sep 2007 03:09:33 -0000 Received: (qmail 86785 invoked by uid 500); 11 Sep 2007 03:09:26 -0000 Delivered-To: apmail-incubator-xap-commits-archive@incubator.apache.org Received: (qmail 86766 invoked by uid 500); 11 Sep 2007 03:09:26 -0000 Mailing-List: contact xap-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: xap-dev@incubator.apache.org Delivered-To: mailing list xap-commits@incubator.apache.org Received: (qmail 86756 invoked by uid 99); 11 Sep 2007 03:09:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Sep 2007 20:09:26 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Sep 2007 03:11:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3978D1A9832; Mon, 10 Sep 2007 20:09:10 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r574440 - /incubator/xap/trunk/codebase/src/xap/widgets/dojo/GridPanel.js Date: Tue, 11 Sep 2007 03:09:09 -0000 To: xap-commits@incubator.apache.org From: jmargaris@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070911030910.3978D1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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? - } + } } );