ChangeLog 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. 2008-01-15 Dean Brettle <[email protected]>
  2. * WebControlAdapter.cs, HierarchicalDataBoundControlAdapter.cs,
  3. DataBoundControlAdapter.cs: changed to use ControlAdapter.control
  4. instead of using base.Control or using a new control field.
  5. * MenuAdapter.cs: added internal constructor that takes a Menu
  6. parameter. The constructor is used when writing unit tests.
  7. * MenuAdapter.cs (OnInit, OnPreRender, RenderBeginTag,
  8. RenderContents, RenderEndTag): delegate to base instead of
  9. Control.
  10. * MenuAdapter.cs (LoadAdapterControlState, SaveAdapterControlState,
  11. RaisePostBackEvent, RenderItem): implemented.
  12. 2008-01-13 Dean Brettle <[email protected]>
  13. * WebControlAdapter.cs (RenderContents): changed to call
  14. control.RenderContents() instead of control.Render().
  15. * WebControlAdapter.cs, HierarchicalDataBoundControlAdapter.cs,
  16. DataBoundControlAdapter.cs, HideDisabledControlAdapter.cs: added
  17. internal constructor that takes a parameter of the corresponding
  18. Control type. The construct is used when writing unit tests.
  19. 2005-08-24 Chris Toshok <[email protected]>
  20. * MenuAdapter.cs (OnInit): Call "Page.RegisterRequiresControlState
  21. (Control)" as the docs point out.
  22. (LoadAdapterControlState): throw NIE and flag TODO.
  23. 2005-08-24 Chris Toshok <[email protected]>
  24. * HierarchicalDataBoundControlAdapter.cs (PerformDataBinding):
  25. this takes no arguments.
  26. 2005-08-24 Chris Toshok <[email protected]>
  27. * WebControlAdapter.cs, HierarchicalDataBoundControlAdapter.cs,
  28. DataBoundControlAdapter.cs, HideDisabledControlAdapter.cs,
  29. MenuAdapter.cs: fix namespace.
  30. 2005-08-24 Chris Toshok <[email protected]>
  31. * DataBoundControlAdapter.cs, HideDisabledControlAdapter.cs,
  32. HierarchicalDataBoundControlAdapter.cs, MenuAdapter.cs,
  33. WebControlAdapter.cs: initial implementations. Mostly completely
  34. (as per msdn2 docs, anyway).