X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.UI.WebControls%2FChangeLog;h=b0eac139fe783087511bb940977f89c892d8bbf6;hb=1ba8e9ec4b8347d98f833b54ea46407a2d9eb88e;hp=abfbdc7a30cbaf754f81936a02137ad5b730b7d5;hpb=5df7ecd9bd937012a82f4677d1b3111e30ec2bd4;p=mono.git diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog b/mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog index abfbdc7a30c..b0eac139fe7 100644 --- a/mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog +++ b/mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog @@ -1,3 +1,69 @@ +2008-07-16 Marek Habersack + + * XmlDataSource.cs: check if Page isn't null before stringifying + it in GetDataKey (), fixes bug #409492 + +2008-07-13 Roei Erez + + * GridView.cs: When the RowDataBound event is invoked, the value + of GridView1.DataKeys should contains all the keys up untill the + current row, and not be empty. + I only changed the order of the user event invocation and the addition + to the collection. + +2008-07-13 Roei Erez + + * TreeView.cs: In case of multiple tree node bingings, select + The first one and not the last one. + +2008-07-10 Roei Erez + + * HyperlinkField.cs: Changed behavior of HyperLinkField bound field key + to be case insensitive. + +2008-07-03 Marek Habersack + + * CheckBox.cs: do not render the language="javascript" attribute + in the 2.0 profile. + +2008-07-02 Marek Habersack + + * GridView.cs: minor optimizations (removed a foreach loop, + replaced calls to Array.Length with a variable containing the + length). + +2008-06-30 Marek Habersack + + * ObjectDataSourceView.cs, Menu.cs, DataList.cs, + CustomValidator.cs: hush the warnings + +2008-06-10 Noam Lampert + + * ListItemCollection.cs: Provide viewstate for dirty collection even if it is empty. + +2008-05-30 Marek Habersack + + * BaseDataBoundControl.cs, ChangePassword.cs, CustomValidator.cs, + DataControlFieldCollection.cs, DataControlField.cs, + PasswordRecovery.cs, PagerSettings.cs: do not use synthetized + event accessors (to avoid locks). + +2008-05-18 Marek Habersack + + * HierarchicalDataBoundControl.cs: Modified GetData method to check if + DataSource implements IHierarchicalEnumerable and if so constructs and + returns a new instance of ReadOnlyDataSourceView. This provides functional + compatibility with the Microsoft.NET framework. Fixes bug + #395209. Patch contributed by James Fitzsimons + , thanks! + +2008-05-06 Marek Habersack + + * Calendar.cs: do not create dateInfo in the constructor - culture + might be not set yet at this point. Fixes bug #323566 + Added a private property, DateInfo, which creates the dateInfo + when requested. + 2008-05-05 Sebastien Pouliot * BulletedList.cs: Avoid calling ToString on a string.