2007-02-12 Igor Zelmanovich <igorz@mainsoft.com>
authorIgor Zelmanovich <igorz@mono-cvs.ximian.com>
Mon, 12 Feb 2007 12:19:36 +0000 (12:19 -0000)
committerIgor Zelmanovich <igorz@mono-cvs.ximian.com>
Mon, 12 Feb 2007 12:19:36 +0000 (12:19 -0000)
* GridViewRowCollection.cs: implemented IsReadOnly property.

svn path=/trunk/mcs/; revision=72646

mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog
mcs/class/System.Web/System.Web.UI.WebControls/GridViewRowCollection.cs

index f04fc57e42f885edc9017fc2c66511c4a94e0333..37fc53b87408dd1f82556e77a81975cfd5742ea8 100644 (file)
@@ -1,3 +1,7 @@
+2007-02-12 Igor Zelmanovich <igorz@mainsoft.com>
+
+       * GridViewRowCollection.cs: implemented IsReadOnly property.
+
 2007-02-12 Igor Zelmanovich <igorz@mainsoft.com>
 
        * BaseValidator.cs: implemented SetFocusOnError feature.
index b434d6e34430fad689b577c1f045e318985b80bf..2556739e5fcab7a6ff1b28d8c549e3359a4f05a1 100644 (file)
@@ -62,6 +62,10 @@ namespace System.Web.UI.WebControls
                public int Count {
                        get { return rows.Count; }
                }
+
+               public bool IsReadOnly {
+                       get { return false; }
+               }
                
                public bool IsSynchronized {
                        get { return false; }