2006-10-09 Igor Zelmanovich <igorz@mainsoft.com>
authorIgor Zelmanovich <igorz@mono-cvs.ximian.com>
Mon, 9 Oct 2006 09:52:40 +0000 (09:52 -0000)
committerIgor Zelmanovich <igorz@mono-cvs.ximian.com>
Mon, 9 Oct 2006 09:52:40 +0000 (09:52 -0000)
* BoundField.cs: implemented ValidateSupportsCallback().

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

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

index fd7ab51d78782327469cea47ed5ce44dfb8dd420..6bce92675645be36574ac03b4af2d6706fa08a70 100644 (file)
@@ -265,10 +265,12 @@ namespace System.Web.UI.WebControls {
                        field.HtmlEncode = HtmlEncode;
                }
 
-               [MonoTODO]
+               // MSDN: The ValidateSupportsCallback method is a helper method used to determine 
+               // whether the controls contained in a BoundField object support callbacks. 
+               // This method has been implemented as an empty method (a method that does not contain 
+               // any code) to indicate that callbacks are supported.
                public override void ValidateSupportsCallback ()
                {
-                       throw new NotImplementedException ();
                }
 
        }
index d2d24e4edcdfcbf528fc1062e49dfc7d56fd245e..db6b0823543126e6cb657b65c5929103a8f12005 100644 (file)
@@ -1,3 +1,7 @@
+2006-10-09 Igor Zelmanovich <igorz@mainsoft.com>
+
+       * BoundField.cs: implemented ValidateSupportsCallback().
+
 2006-10-09 Igor Zelmanovich <igorz@mainsoft.com>
 
        * CommandField.cs: ValidateSupportsCallback(): exception's message.