X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.UI.WebControls%2FChangeLog;h=dbf6ccc0dd8bff7f51b0e76c51afad12e363ab8a;hb=aa11211a2aea0079a2a74f550ad485979f9b51e3;hp=ee2982f783f2224391d2e5590019c2eb56739d03;hpb=f31e57c21c8521a731b7fb0e2a3895f24333ae11;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 ee2982f783f..dbf6ccc0dd8 100644 --- a/mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog +++ b/mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog @@ -1,3 +1,187 @@ +2004-06-03 Gonzalo Paniagua Javier + + * Calendar.cs: + * CompareValidator.cs: + * ImageButton.cs: + * Style.cs: + * WebControl.cs: Added protected missing members and attributes. + +2004-05-18 Gonzalo Paniagua Javier + + * TextBox.cs: don't save the Text if in ViewState if it's a password. + Save it if the control is not visible or not enabled. Fixes bug #58497. + +2004-05-14 Gonzalo Paniagua Javier + + * Calendar.cs: fire OnDayRender after assigning the calendar cell text. + Fixes bug #58097. + +2004-05-09 Gert Driesen (drieseng@users.sourceforge.net) + * Parameter.cs: + * SqlDataSourceCommandEventArgs: + * XmlDataSource.cs : removed temporary workarounds for CLS + compliance as System.Data is now CLS compliant + +2004-05-06 Alon Gazit + * WebControl.cs: fixed LoadViewState() and SaveViewState(). + Before the change the Enabled property wasn't updated when a postback + event was raised. + * ListControl.cs: fixed SelectedIndex property implementation. + Prevents throwing ArgumentOutOfRangeException (that should not be thrown), + when the list is empty. + +2004-04-28 Alon Gazit + * WebControl.cs: fixed LoadViewState(). + Always loading the saved attributes collection. + +2004-04-18 Alon Gazit + * Repeater.cs: fixed InstantiateItem() and DataSource property. + The change in DataSource prevents throwing ArgumentException while + setting property value to null. + The change in InstantiateItem() prevents NullReferenceException. + +2004-04-07 Lluis Sanchez Gual + + * BaseValidator.cs: Store Display property in the correct ViewState + property. Don't render anything if Display is ValidatorDisplay.None. + +2004-03-30 Lluis Sanchez Gual + + * Xml.cs: In LoadXpathDoc(), don't use MapPathSecure with documentSource, + since it is already a physical path. Fixes bug #55334. + +2004-02-13 Jackson Harper + + * Calendar.cs: Match MS postback data. This allows sites that + parse the postback data manually to work. + +2004-02-04 Alon Gazit + * EditCommandColumn.cs: fixed InitializeCell(). + The rendered LiteralControl should contain " " and not " ". + +2004-02-01 Alon Gazit + + * DataGrid.cs: fixed a problem in the paging mechanism in the method + InitializePager(). + the problem was when (PagerStyle.Mode == PagerMode.NumericPages), + while clicking the "..." link in the second page. + +2004-01-28 Alon Gazit + + * Calendar.cs: prevent NullReferenceException in RenderAllDays(). + +2004-01-27 Gonzalo Paniagua Javier + + * Calendar.cs: when rendering days, add a LiteralControl containing the + day before OnDayRender is called. Only generate the default links for + days when IsSelectable is true after OnDayRender. Fixes bug #53372. + +2004-01-21 Martin Baulig + + * XmlHierarchyData.cs: Make this compile with csc. + + * BulletedList.cs (BulletedList.SelectedItem): Removed the `set' + accessor since the base class doesn't have one. + +2004-01-18 Alon Gazit + + * CheckBoxList.cs: fix problem with negative TabIndex (wasn't rendered). + +2004-01-18 Alon Gazit + + * Style.cs: CopyFrom method shouldn't copy a value that is equal to + Property default value. + * FontInfo.cs : CopyFrom method shouldn't copy a value that is equal to + Property default value. + +2004-01-15 Alon Gazit + + * RadioButtonList.cs: RepeatLayout property should affect the rendered + html. + +2004-01-15 Alon Gazit + * FontInfo.cs: Add validation check to Size property. + +2004-01-07 Alon Gazit + * DataGrid.cs: Fixed PrepareControlHierarchyForItem(). + merge the column's style to the cell's style and not to + the item's(row) style. + +2004-01-04 Alon Gazit + * RangeValidator.cs: Fixed ControlPropertiesValid(). + +2004-01-03 Gonzalo Paniagua Javier + + * Xml.cs: mono-stylized and removed warnings. + +2004-1-1 Alon Gazit + * RadioButtonList.cs: update RenderItem() so that each RadioButton + is enabled or disabled like the RadioButtonList. + * CheckBoxList.cs: update RenderItem() so that each CheckBox + is enabled or disabled like the CheckBoxList. + +2004-1-1 Alon Gazit + * DataGrid.cs: Fixed PrepareControlHierarchyForItem(). + The Header or Footer Style shouldn't merge with the cells Style. + +2004-1-1 Alon Gazit + * DataGridColumn.cs: Headers and Footers are initialized + with the relevant Style object. + +2003-12-30 Alon Gazit + * RepeatInfo.cs: Fixed DoVerticalRendering () and + DoHorizontalRendering(). + Current implementation produces few extra html tags. + +2003-12-29 Alon Gazit + + * CheckBox.cs: change the implementation of LoadPostData. + Currently, while the AutoPostBack property equals true , + it isn't possible to perform uncheck. + +2003-12-19 Jackson Harper + + * TableCell.cs: Setting a cells text should clear its control + collection as per la specification. This fixes bug #51825. + +2003-12-18 Gonzalo Paniagua Javier + + * DataGridColumn.cs: stylized LoadViewState. + * DataGridColumnCollection.cs: when TrackViewState is called, also + call it on all the existing columns. Fixes bug #52334. + +2003-12-18 Alon Gazit + + * DataGridPagerStyle.cs: merge DataGridPagerStyle properties when Style + is empty. + +2003-12-18 Alon Gazit + + * TableStyle.cs: merge TableStyle properties when Style is empty. + +2003-12-16 Alon Gazit + + * HyperLink.cs: Change Text property implementation. in MS when the Text + property is set, all the controls in the HyperLink are being deleted. + This fixes bug #52239. + +2003-12-15 Alon Gazit + * RepeatInfo.cs: Fixed DoVerticalRendering () and + DoHorizontalRendering(). + Both methods add additional empty table row in the head of each item + table when the variable named isTable equals true (happenes with the + default instantiation of RepeatInfo). These additional rows should be + added when isTable equals false. + This fixes bug #52225. + +2003-12-15 Alon Gazit + + * RepeatInfo.cs: Fixed DoVerticalRendering() and + DoHorizontalRendering(). + Both methods add to rendered Header a colspan attribute according to the + rows count. after the change the colspan is added according to the + columns count. + 2003-12-15 Alon Gazit * CheckBox.cs: Disabled CheckBox does not produce same HTML as .NET. In .NET if the checkbox is disabled ,its text appears disabled too.