[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / ChangeLog
index e7976ae85e432cc1a56c049a71570f60468deb4c..5ec923ec89aa091fbf230d01b9545f0dde81b68b 100644 (file)
@@ -1,3 +1,150 @@
+2010-07-23  Marek Habersack  <mhabersack@novell.com>
+
+       * MenuItemBindingCollection.cs: added the OnClear,
+       OnRemoveComplete and OnValidate methods (2.0+)
+
+       * MenuItemStyleCollection.cs: added the OnInsert method (2.0+)
+
+       * TreeNodeStyleCollection.cs: added the OnInsert method (2.0+)
+
+       * TreeNodeBindingCollection.cs: added the OnClear,
+       OnRemoveComplete and OnValidate methods (2.0+)
+
+       * ValidationSummary.cs: implemented OnInit (4.0)
+
+       * WizardStepBase.cs: added the LoadViewState, OnLoad and
+       RenderChildren methods (2.0+)
+
+2010-07-22  Marek Habersack  <mhabersack@novell.com>
+
+       * MenuItemBinding.cs: made code a bit more compact.
+       Implemented ToString (4.0)
+
+       * MenuRenderingMode.cs: added (4.0)
+
+       * Menu.cs: added the IncludeStyleBlock and RenderingMode 4.0
+       properties (not used in the code yet).
+
+2010-07-21  Marek Habersack  <mhabersack@novell.com>
+
+       * Wizard.cs: made rendering 100% compliant with .NET (button IDs,
+       2.0+)
+       Implemented LayoutTemplate (4.0+)
+
+       * LinkButton.cs: render id first
+
+       * CreateUserWizard.cs: CreateUserNavigationContainer.UpdateState
+       doesn't add a previous button if we're on the first step.
+
+2010-07-20  Marek Habersack  <mhabersack@novell.com>
+
+       * StyleCollection.cs: added
+
+2010-07-19  Marek Habersack  <mhabersack@novell.com>
+
+       * SqlDataSourceView.cs: added the RaiseUnsupportedCapabilityError
+       method (2.0+)
+
+       * RoleGroupCollection.cs: added OnValidate (undocumented) overload
+
+       * ParameterCollection.cs: added missing Add method overload (2.0+)
+
+       * LiteralControlBuilder.cs: added the AppendLiteralString method
+       override (2.0+)
+
+       * DataKey.cs: implemented IEquatable interface methods (4.0)
+
+       * XmlDataSource.cs: implemented CacheKeyContext property (4.0)
+
+2010-07-16  Marek Habersack  <mhabersack@novell.com>
+
+       * Login.cs, PasswordRecovery.cs: implemented RenderOuterTable
+       (4.0)
+
+       * FormViewRow.cs: added internal property RenderJustCellContents
+       which makes the control render only its children (4.0)
+
+       * FormView.cs: implemented RenderOuterTable property and the
+       ModifiedOuterTableStylePropertyName method (4.0)
+
+2010-07-15  Marek Habersack  <mhabersack@novell.com>
+
+       * WebControl.cs: implemented verifying that no inline style
+       property is set for controls which support the RenderOuterTable
+       property (4.0)
+
+       * IRenderOuterTable.cs: internal helper interface for controls
+       which support the RenderOuterTable property (for now only
+       ChangePassword, 3 more to come)
+
+       * ChangePassword.cs: implemented RenderOuterTable property and the
+       corresponding behavior of not rendering surrounding table when the
+       property is set to false (4.0).
+       Modified BaseChangePasswordContainer to not inherit from Table
+       anymore. Table is an instance variable (always used as the
+       template container in 2.0) which is optionally (and by default)
+       used to contain the templates.
+
+       * PlaceHolder.cs, View.cs, WizardStepBase: added EnableTheming
+       property
+
+       * MultiViewControlBuilder.cs: added
+
+2010-07-14  Marek Habersack  <mhabersack@novell.com>
+
+       * Menu.cs: fixed skip link rendering (no child controls are added
+       in the process, writing directly to HtmlTextWriter). Fixes tests
+       for 4.0
+       If StaticSubMenuIndent equals Unit.Empty on 4.0, default to using
+       16px as the value of the margin-left CSS attribute.
+
+2010-07-13  Marek Habersack  <mhabersack@novell.com>
+
+       * BoundField.cs: implemented HtmlEncodeFormatString property
+       (3.5+) and modified the way FormatDataValue works accordingly.
+
+       * ListBox.cs, CheckBoxList.cs, ListControl.cs: VerifyMultiSelect
+       is not part of the official API. MultiSelect capability validation
+       is performed using an internal virtual method MultiSelectOk ().
+
+       * BaseDataList.cs: OnPagePreLoad is not part of the official API
+
+       * BaseDataBoundControl.cs, BaseDataList.cs, DataListItem.cs,
+       ValidationSummary.cs: implemented 4.0 SupportsDisabledAttribute
+       property.
+
+       * Wizard.cs: wizard table doesn't contain any instances of
+       HtmlAnchor or Image controls. Moved rendering of the skip link
+       anchor to the TableCellNamingContainer class, which does that in
+       RenderChildren by directly writing to the passed writer. Fixes 4.0
+       rendering and all the failing Wizard tests.
+
+2010-07-08  Marek Habersack  <mhabersack@novell.com>
+
+       * CheckBoxList.cs: RepeatLayout property update for new values of
+       the RepeatLayout enum in 4.0
+
+       * TreeView.cs: in 4.0, checkbox renders the value of the current
+       node's ToolTip, if anything, and not Text.
+
+       * RepeatLayout.cs: added two new members, UnorderedList and
+       OrderedList (4.0)
+
+       * ImageMap.cs: implemented missing Enabled property (2.0+)
+       RaisePostBackEvent must be protected and virtual (2.0+)
+       NavigateUrl is ignored if the control is disabled (4.0)
+
+2010-07-07  Marek Habersack  <mhabersack@novell.com>
+
+       * TreeView.cs: 4.0 rendering changes.
+       When using registered CSS classes, the node style must use them in
+       reverse order.
+
+2010-07-06  Marek Habersack  <mhabersack@novell.com>
+
+       * HyperLink.cs: the associated image is not rendered using the
+       Image control.
+
 2010-07-02  Marek Habersack  <mhabersack@novell.com>
 
        * Menu.cs: 4.0 API updates.