ChangeLog 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837
  1. 2002-09-12 Gaurav Vaish <[email protected]>
  2. * PagedDataSource.cs - FirstIndexInPage : Fixed bug.
  3. * DataGrid.cs - CreateControlHierarchy(bool)
  4. : working towards completion.
  5. - ResolveDataSource(object, string)
  6. : stubbed new method
  7. - CreateItem(....)
  8. : stubbed new method
  9. Well. It's almost done.
  10. * DataGridTableInternal.cs
  11. - Added new internal class.
  12. 2002-08-28 Gaurav Vaish <[email protected]>
  13. * DataSourceInternal.cs - Added new class (internal).
  14. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  15. * FontUnit.cs:
  16. * HorizontalAlign.cs:
  17. * Unit.cs:
  18. * VerticalAlign.cs: fixes based on class status page.
  19. * HorizontalAlignConverter.cs: implemented.
  20. * VerticalAlignConverter.cs: implemented.
  21. * FontUnitConverter.cs: implemented GetStandardValues ().
  22. * WebColorConverter.cs: implemented ConvertFrom () and ConvertTo ().
  23. 2002-08-19 Gaurav Vaish <[email protected]>
  24. * DataGrid.cs - AutoCreateColumns: Bug fixes.
  25. 2002-08-19 Gaurav Vaish <[email protected]>
  26. * DataGrid.cs - AutoCreateColumns: completed, hopefully!
  27. 2002-08-19 Gaurav Vaish <[email protected]>
  28. * DataGrid.cs - Working on the undocumented protected
  29. method CreateColumnSet. AutoCreateColumns method
  30. stubbed. Left CreateControlHierarchy for the time
  31. being, looks like I'm going insane. ;-)
  32. 2002-08-19 Gaurav Vaish <[email protected]>
  33. * Button.cs - Steffen's OnCommand bug fix.
  34. 2002-08-12 Gaurav Vaish <[email protected]>
  35. * DataGrid.cs - Added protected method (skeleton)
  36. CreateColumnSet(PagedDataSource, bool)
  37. Still trying to know how will it be used
  38. and what for...
  39. 2002-08-10 Gonzalo Paniagua Javier <[email protected]>
  40. * PagedDataSource.cs: fixed compilation.
  41. 2002-08-08 Gaurav Vaish <[email protected]>
  42. * DataGrid.cs - Added private method
  43. CreatePagedDataSource
  44. - Started work on
  45. CreateControlHierarchy(bool)
  46. * PagedDataSource.cs - Bug fixed.
  47. CurrentPageIndex is writable.
  48. 2002-08-07 Gonzalo Paniagua Javier <[email protected]>
  49. * DataGrid.cs: fixed typo.
  50. * DataGridPagerStyle.cs: added IsPagerOnTop and IsPagerOnBottom.
  51. 2002-08-06 Gaurav Vaish <[email protected]>
  52. * DataGridColumn.cs - Added internal methods to get the
  53. various styles (needed in DataGrid.cs)
  54. * DataGrid.cs - Completed the method
  55. PrepareControlHierarchy()
  56. 2002-08-06 Gaurav Vaish <[email protected]>
  57. * DataGrid.cs - Wokring on PrepareControlHierarchy()
  58. - Added private method
  59. PrepareControlHierarchyForItem()
  60. 2002-08-05 Gaurav Vaish <[email protected]>
  61. * DataGrid.cs - Completed method
  62. OnBubbleEvent(object, EventArgs)
  63. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  64. * Xml.cs: implemented document/transform load.
  65. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  66. * Calendar.cs: added myself to the list of authors.
  67. * DropDownList.cs: fixed a few properties.
  68. * ListControl.cs: fixed SelectedIndex.
  69. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  70. * Calendar.cs: lots of fixes. Render days. Still left to persist
  71. selected days when changing month.
  72. * Unit.cs: fixed Percentage and Pixel.
  73. * WebControl.cs: a few properties are now using ControlStyle instead
  74. of ViewState to persist.
  75. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  76. * BaseValidator.cs: it works now.
  77. * DataGridColumn.cs: added attribute and made it abstract.
  78. * RequiredFieldValidator.cs: fixed return value in EvaluateIsValid.
  79. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  80. * TextBox.cs: default for Wrap is true.
  81. (OnPreRender): don't save Text if there are no listeners on TextChanged.
  82. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  83. * DropDownList.cs:
  84. (ToolTip): fixed.
  85. * ListItem.cs:
  86. (LoadViewState): fixed.
  87. * ListItemCollection.cs:
  88. (TrackViewState): use items instead of 'this' in foreach.
  89. * Style.cs:
  90. (LoadViewState): more checking of parameters.
  91. * WebControl.cs: implemented LoadViewState and SaveViewState.
  92. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  93. * ListItem.cs: there was no code to unset the flags!!!
  94. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  95. * FontUnit.cs: use a hashtable for mapping size name to value.
  96. * HyperLink.cs: fixed a bug and a typo.
  97. * Unit.cs: some fixes to internal constructor.
  98. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  99. * ListControl.cs: fixed a couple of range checks.
  100. * WebControl.cs: MS lies! Not all WebControls must be rendered inside
  101. an HtmlForm (p.e., Label).
  102. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  103. * AdRotator.cs:
  104. * Button.cs:
  105. * Calendar.cs:
  106. * CheckBox.cs:
  107. * CheckBoxList.cs:
  108. * DataList.cs:
  109. * DropDownList.cs:
  110. * HyperLink.cs:
  111. * HyperLinkColumn.cs:
  112. * Image.cs:
  113. * ImageButton.cs:
  114. * Label.cs:
  115. * LinkButton.cs:
  116. * ListBox.cs:
  117. * Panel.cs:
  118. * PlaceHolder.cs:
  119. * RadioButton.cs:
  120. * RadioButtonList.cs:
  121. * Table.cs:
  122. * TableRow.cs:
  123. * TextBox.cs:
  124. * WebControl.cs: removed attributes added by mistake (i used
  125. GetCustomAttributes (true), d'oh!).
  126. * DataListItem.cs: implemented RenderItem.
  127. * Repeater.cs: implemented CreateItem and InitializeItem.
  128. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  129. * BaseDataList.cs: a couple of fiex and added attributes.
  130. * DataGrid.cs: little fixes.
  131. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  132. * CheckBoxList.cs:
  133. * DataGrid.cs:
  134. * DataList.cs:
  135. * DropDownList.cs:
  136. * ListBox.cs:
  137. * PlaceHolder.cs:
  138. * RadioButton.cs:
  139. * RadioButtonList.cs:
  140. * TableRow.cs:
  141. * WebControl.cs:
  142. * Xml.cs: forgot to add using System.ComponentModel.
  143. * BaseValidator.cs: use explicitly
  144. System.ComponentModel.AttributeCollection as there is another class
  145. with the same name under System.Web.UI.
  146. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  147. * AdRotator.cs:
  148. * Button.cs:
  149. * Calendar.cs:
  150. * CheckBox.cs:
  151. * CheckBoxList.cs:
  152. * DataGrid.cs:
  153. * DataList.cs:
  154. * DropDownList.cs:
  155. * HyperLink.cs:
  156. * Image.cs:
  157. * ImageButton.cs:
  158. * Label.cs:
  159. * LinkButton.cs:
  160. * ListBox.cs:
  161. * Panel.cs:
  162. * PlaceHolder.cs:
  163. * RadioButton.cs:
  164. * RadioButtonList.cs:
  165. * Table.cs:
  166. * TableRow.cs:
  167. * TextBox.cs:
  168. * WebControl.cs:
  169. * Xml.cs: added/fixed all attributes used by xsp.
  170. * BaseValidator.cs: some fixes.
  171. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  172. * Table.cs:
  173. (AddAttributesToRender): correctly default to border=1.
  174. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  175. * AdRotator.cs:
  176. (LoadAdFile): make the dictionary null after every iteration.
  177. * LinkButton.cs:
  178. * ListControl.cs:
  179. * ListItem.cs: fixed warnings.
  180. Mon Jul 1 16:23:15 CEST 2002 Paolo Molaro <[email protected]>
  181. * Style.cs, TableRow.cs, DataListItem.cs: fix compilation.
  182. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  183. * DataGridColumn.cs:
  184. * DataGridPagerStyle.cs:
  185. * DataList.cs:
  186. * DataListItem.cs:
  187. * Image.cs:
  188. * LinkButton.cs:
  189. * ListControl.cs:
  190. * ListItem.cs:
  191. * ListItemCollection.cs:
  192. * Repeater.cs:
  193. * ServerValidateEventArgs.cs:
  194. * Style.cs:
  195. * TableRow.cs:
  196. * WebControl.cs:
  197. * Xml.cs: more class status page based changes.
  198. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  199. * Button.cs:
  200. (.ctor): fixed to render the correct tag.
  201. (IPostBAckEventHandler.RaisePostBackEvent): fixed.
  202. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  203. * WebControl.cs:
  204. (AddAttributesToRender): call Page.VerifyRenderingInServerForm. All
  205. WebControl derived classes should be rendered inside a HtmlForm.
  206. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  207. * Repeater.cs: implemented CreateControlHierarchy. Fixed some event
  208. processing methods.
  209. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  210. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  211. * RepeatInfo.cs: implemented DoHorizontalRendering.
  212. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  213. * System.Web.UI.WebControls/Repeater.cs:
  214. (Controls):
  215. (OnDataBinding): fixed stack overflow.
  216. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  217. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  218. * RepeatInfo.cs: implemented DoHorizontalRendering.
  219. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  220. * WebControl.cs:
  221. (CopyBaseAttributes): copy Attributes and don't throw exception.
  222. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  223. * ListBox.cs: mono-stylized.
  224. (AddAttributesToRender): call parent class method.
  225. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  226. * Style.cs: fixed IsEmpty and Width.
  227. * Table.cs: mono-stylized.
  228. (TableRowControlCollection.AddAt): fixed.
  229. (AddAttributesToRender): fixed.
  230. * TableCell.cs: mono-stylized.
  231. (.ctor): use PreventAutoID.
  232. (AddAttributesToRender): fixed.
  233. (AddParsedSubObject): fixed.
  234. * TableRow.cs: mono-stylized. Added
  235. ParseChildren attribute.
  236. * TableStyle.cs:
  237. (get_GridLine): fixed.
  238. 2002-06-16 Gonzalo Paniagua Javier <[email protected]>
  239. * Panel.cs: fixed stack overflow.
  240. * Unit.cs: use Int32.Parse and Single.Parse instead of Int32Converter
  241. and SingleConverter.
  242. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  243. * RadioButton.cs: mono-stylized and some little fixes.
  244. * TextBox.cs: mono-stylized.
  245. (MaxLength): fixed typo.
  246. (AddAttributesToRender): don't render the text between the tags for
  247. SingleLine, use value attribute for it. Don't render the text for
  248. Password.
  249. (OnPreRender): don't throw exception and call base.OnPreRender.
  250. (Render): for MultiLine, render the text between the opening and
  251. closing tags encoded as HTML.
  252. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  253. * ImageButton.cs:
  254. (AddAttributesToRender): fixer another stack overflow.
  255. * WebControl.cs:
  256. (TagName): modified to use TagKey instead of tagKey as the property
  257. can be overriden.
  258. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  259. * LinkButton.cs: mono-stylized.
  260. (AddParsedSubObject):
  261. (RenderControls): little fixes.
  262. * WebControl.cs:
  263. (AddAttributesToRender): fixed usage of IEnumerator.
  264. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  265. * Literal.cs: beautified.
  266. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  267. * Label.cs: beautified and fixed a couple of 'classic' bugs.
  268. * WebControl.cs: use Span as default tag when no other provided in
  269. constructor. That is what MS renders.
  270. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  271. * Button.cs:
  272. (AddAttributesToRender): fixed (classic) stack overflow.
  273. * CheckBox.cs: mono-stylized.
  274. (AutoPostBack): fixed stack overflow.
  275. (Render): fixed alignment issues. Also set the For attribute always
  276. for the label.
  277. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  278. * AdRotator.cs: GetData does not work as it should, but now it returns
  279. useful data (only the first ad in the file). Set the NavigateUrl
  280. property in the hyperlink if available.
  281. * HyperLink.cs: fixed constructor and a couple of stack overflows.
  282. * Image.cs: added an attribute and fixed stack overflow.
  283. * WebControl.cs:
  284. (RenderBeginTag): fixed.
  285. (TagName): don't call Enum.IsDefined twice.
  286. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  287. * WebControl.cs: added attributes PersistChildrenAttribute and
  288. ParseChildrenAttribute.
  289. 2002-05-24 Duncan Mak <[email protected]>
  290. * DataGridItem.cs (SetItemType): Changed function signature to
  291. match 1.0 spec.
  292. * ListItemCollection.cs (this): Changes the visibility level of
  293. the indexer.
  294. * Repeater.cs (OnItemCommand):
  295. (OnItemCreated):
  296. (OnItemDataBound): Added necessary casts.
  297. 2002-05-07 Duncan Mak <[email protected]>
  298. * Button.cs (AddAttributesToRender):
  299. * ImageButton.cs (AddAttributesToRender): Added a missing argument to the
  300. GetClientValidatedEvent method.
  301. 2002-03-27 Gaurav Vaish <[email protected]>
  302. * Removed extra methods, corrected access modifiers to several
  303. methods.
  304. 2002-03-26 Gaurav Vaish <[email protected]>
  305. * <SeveralFiles>.cs - Added some attributes
  306. * FontUnitConverter.cs - Added stubs for GetStandardValues*(..)
  307. methods. Will complete them later. Right now, busy with
  308. the attributes part.
  309. * RepeaterItem.cs - Completed.
  310. Oh God! Mercy! I will die applying attributes. I look at the missing
  311. part in the class-status - daemon! Kyrie eleison!
  312. 2002-03-19 Gaurav Vaish <[email protected]>
  313. Some bug fixes
  314. * AdRotator.cs - Added definition for Font.
  315. * BaseCompareValidator.cs - Added definition for Controls.
  316. * Calendar.cs - SelectMonthText definition corrected.
  317. * DataList.cs - Added definition for SeparatorTemplate.
  318. * BorderStyle.cs - Namespace correction. It belongs not to UI,
  319. but to UI.WebControls.
  320. 2002-03-17 Gaurav Vaish <[email protected]>
  321. Finally, I have made it. Today I did a second build for the
  322. System.Web assembly. It compiled 195 classes today.
  323. I am waiting eagerly for the runtime to come up so that the objects
  324. may be tested to their last levels. Several of the methods are still
  325. under the tag of "TODO" throwing NotImplementedException. Well, I
  326. hope to remove them soon, but how far is this soon - even I don't
  327. know, though I am happy to make the build a success even before
  328. the vacations to come.
  329. 2002-03-07 Gaurav Vaish <[email protected]>
  330. Yesterday and today I tried to do some building of the aseembly,
  331. but was dumped with uncoutably infinite errors. ;-)
  332. I have put the copies of the recent errors on my home page, want
  333. to have a look at them? See:
  334. http://mastergaurav.virtualave.net/mono/
  335. I don't know what to do with these errors. Oh! The buggy me! How
  336. will I overcome myself. Hopefully, by when my vacations over, I
  337. should have made a repository where the build will not fail.
  338. 2002-03-05 Gaurav Vaish <[email protected]>
  339. I am now going to do a build that will include the
  340. System.Web.UI.WebControls namespace. Hoping that I will make it
  341. soon. My exams are coming near and I have to pack up soon.
  342. 2002-03-04 Gaurav Vaish <[email protected]>
  343. Comments:
  344. And with this, ie, today's work, all the objects mentioned in the
  345. namespace appear in the implementation. But it may not be worth
  346. trying to go for a build because of dependence of several of the
  347. internal methods that may clash with already available assembly
  348. System.Web.
  349. Also, the classes lack possible attributes, like those informing
  350. about child-controls etc. But I have to first create the attribute
  351. classes before I attach the attributes to the classes.
  352. * CustomValidator.cs - Completed. In process realized that
  353. I have to complete / rejuvinate BaseValidator class.
  354. * BaseValidator.cs - Complete rejuvination. Completed 80%
  355. of the job. All that is left is Render(HtmlTextWriter),
  356. DetermineRenderUplevel(), RegisterValidatorCommonScript()
  357. RegisterValidatorDeclaration()
  358. * DataGridPagerStyle.cs - Completed. That adds one more missle
  359. in my artillery.
  360. * DataKeyCollection.cs - Completed. Petty small.
  361. * Repeater.cs - Work started off. This is a quite
  362. heavy class. Hooh!
  363. * DataGridItemEventArgs.cs,
  364. * DataGridShortCommandEventArgs.cs,
  365. * DataListItemEventArgs.cs,
  366. * MonthChangedEventArgs.cs,
  367. * RepeaterItemEventArgs.cs,
  368. * ServerValidateEventArgs.cs,
  369. * DataGridPageChangedEventArgs.cs
  370. - Damn, I marked them "*", while they
  371. did not exist.
  372. * Repeater.cs - Done all except for an undocumented
  373. method CreateControlHierarchy(bool). Though the method
  374. is quite clear by its name, but it will take some time
  375. for me to come with some material to flush in.
  376. 2002-03-03 Gaurav Vaish <[email protected]>
  377. * SelectedDatesCollection.cs - Completed.
  378. * PagedDataSource.cs - Completed. Pathetically nice class.
  379. * RegularExpressionValidator.cs
  380. - Completed. Ridiculously small and
  381. annoyinglyc crazy-driving class, basically the method
  382. EvaluateIsValid().
  383. * RangeValidator.cs - Completed.
  384. * DataGridColumn.cs - Completed.
  385. * EditCommandColumn.cs - All is complete except for the
  386. InitializeCell(TableCell, int, ListItemType) method.
  387. * DataListItem.cs - All done except for a longish method
  388. RenderItem(HtmlTextWriter, bool, bool)
  389. 2002-03-02 Gaurav Vaish <[email protected]>
  390. * RepeaterItemCollection.cs - Completed.
  391. I love *Collection classes. I am planning to make a
  392. program that will generate a *Collection class. It's so
  393. simple and the same. ;-)
  394. * DataGridColumnCollection.cs - Completed.
  395. ... except probably for *ColumnCollection classes, where
  396. you have to put in some more effort. Still, these class
  397. generation can be automated.
  398. * DataListItemCollection.cs - Completed.
  399. See, how easily, in less than a quarter of a minute, I
  400. completed this class - manually. Copy-Paste/Cut-Replace.
  401. 2002-02-21 Gaurav Vaish <[email protected]>
  402. * DataGrid.cs - Following methods implemented:
  403. TrackViewState(), LoadViewState(object), SaveViewState(),
  404. On* -- The event raisers.
  405. OnBubbleEvent(object, EventArgs) is still incomplete.
  406. * DataGridItem.cs - Initial Implementation
  407. * DataGridItemCollection.cs - Completed.
  408. 2002-02-08 Gaurav Vaish <[email protected]>
  409. * DataGrid.cs - Initial Implementation. Worked
  410. primarily with some properties.
  411. 2002-02-07 Gaurav Vaish <[email protected]>
  412. * ListBox.cs - Completed. Implemented
  413. LoadPostData(string, NameValueCollection)
  414. * RequiredFieldValidator.cs - Completed. Pretty simple class.
  415. 2002-02-06 Gaurav Vaish <[email protected]>
  416. * ListBox.cs - Implemented the following:
  417. RaisePostDataChangedEvent()
  418. 2002-02-02 Gaurav Vaish <[email protected]>
  419. * ListBox.cs - Supports the following properties:
  420. BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
  421. ToolTip.
  422. Methods:
  423. AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
  424. RenderContents(HtmlTextWriter)
  425. 2002-02-01 Gaurav Vaish <[email protected]>
  426. * TargetConverter.cs - Completed
  427. * TemplateColumn.cs - Completed
  428. * DataList.cs - Corrected the get-er methods for the
  429. *Style objects. Corrected the get/set-er methods for ViewState
  430. related objects.
  431. Addded support for properties:
  432. GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
  433. RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
  434. SelectedItem, SelectedItemStyle, SelectedItemTemplate,
  435. SeparatorStyle, SeparatorItemTemplate.
  436. Events:
  437. CancelCommand, DeleteCommand, EditCommand, ItemCommand,
  438. ItemCreated, ItemDataBound, UpdateCommand.
  439. Methods:
  440. CreateControlStyle(), LoadViewState(object),
  441. SaveViewState(), TrackViewState
  442. Event handlers:
  443. OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
  444. OnEditCommand, OnItemCommand, OnItemCreated,
  445. OnItemDataBound, OnUpdateCommand
  446. Added dummy methods for some undocumented methods:
  447. CreateControlHierarchy(bool), CreateItem(int, ListItemType),
  448. CreateItem(int, ListItemType, bool, object),
  449. PrepareControlHierarchy(), InitializeItem(DataListItem)
  450. * ListBox.cs - Started working.
  451. 2002-01-31 Gaurav Vaish <[email protected]>
  452. * RepeaterInfo.cs - Initial Implementation. Done all
  453. except for RepeatDirection.Vertical
  454. * TableStyle.cs - Completed
  455. 2002-01-30 Gaurav Vaish <[email protected]>
  456. * DropDownList.cs - Completed
  457. * ListItemCollection.cs - Added method FindByValueInternal to
  458. assist in the derived classes.
  459. Discovered bug in FindByValue. Removed
  460. * UnitConverter.cs - Completed
  461. * PlaceHolder.cs - What can be simpler than this?
  462. * PlaceHolderControlBuilder.cs
  463. - Uh! Damn cool one.
  464. * RadioButtonList.cs - Initial Implementation. All is done
  465. except for the implementation of
  466. method IRepeatInfoUser.RenderItem(...)
  467. * ValidatedControlConverter.cs
  468. ^^^^^^^^^^^^^^^^^^^^^^^^^ - Looks complete. Doubtful though !!
  469. * ValidationSummary.cs - Initial Implementation.
  470. * WebColorConverter.cs - Initial Implementation
  471. 2002-01-27 Gaurav Vaish <[email protected]>
  472. * FontNamesConverter.cs - Completed
  473. * FontUnitConverter.cs - Partial Implementation
  474. * ListItemControlBuilder.cs - Completed
  475. 2002-01-27 Gaurav Vaish <[email protected]>
  476. * TextBox.cs - All done except *Render* methods
  477. * TextBoxControlBuilder.cs - Completed
  478. * Xml.cs - Partial Implementation
  479. 2002-01-26 Gaurav Vaish <[email protected]>
  480. * RadioButton.cs - Completed
  481. * TextBox.cs - Partial Implementation
  482. 2002-01-25 Gaurav Vaish <[email protected]>
  483. * Panel.cs - Completed
  484. * TableItemStyle.cs - Completed
  485. 2002-01-18 Gaurav Vaish <[email protected]>
  486. * TableCellCollection.cs - Completed
  487. * TableRowCollection.cs - Completed
  488. * TableHeaderCell.cs - Completed
  489. * TableRow.cs - Completed
  490. 2002-01-09 Gaurav Vaish <[email protected]>
  491. * TableCellControlBuilder.cs - Completed
  492. * Table.cs - Completed
  493. * TableCell.cs - Completed
  494. 2002-01-07 Gaurav Vaish <[email protected]>
  495. * CheckBoxList.cs - Completed
  496. * ButtonColumn.cs - Completed
  497. * Button.cs - Completed
  498. 2001-12-28 Gaurav Vaish <[email protected]>
  499. * HyperLink.cs - Completed
  500. * Image.cs - Completed
  501. * ImageButton.cs - Completed
  502. * Label.cs - Completed
  503. * LabelControlBuilder.cs - Completed
  504. * LinkButton.cs - Completed
  505. * LinkButtonControlBuilder.cs - Completed
  506. * Literal.cs - Completed
  507. * LieteralControlBuilder.cs - Completed
  508. * FontUnit.cs - Completed
  509. 2001-12-27 Gaurav Vaish <[email protected]>
  510. * Calendar.cs - Completed the functions of Render*,
  511. ViewStates (Track/View/Save),
  512. RaisePostBackEvent.
  513. Left: RenderAllDays (partially)
  514. 2001-12-21 Gaurav Vaish <[email protected]>
  515. * Calendar.cs - Added some more functions
  516. * Style.cs - Completed
  517. * ListItem.cs - Completed
  518. * ListItemCollection.cs - Completed
  519. Made the first successful build of System.Web.dll that included
  520. System.Web.UI.WebControls!
  521. 2001-12-20 Gaurav Vaish <[email protected]>
  522. FontInfo.cs - Complete revamp. Completed
  523. 2001-12-19 Gaurav Vaish <[email protected]>
  524. ListItemCollection.cs - Completed
  525. ListItem.cs - Initial Implementation
  526. Style.cs - Initial Implementation
  527. Right now I am in a total mood to do a successful build. Creating so many
  528. classes, completing classes in System.Web System.Web.UI namespaces.
  529. 2001-12-18 Gaurav Vaish <[email protected]>
  530. TODO - Properly added
  531. CheckBox.cs - Completed
  532. BaseDataList.cs - Completed
  533. DayRenderEventArgs.cs - Completed
  534. RepeaterItem.cs - Initial implementation
  535. 2001-12-17 Gaurav Vaish <[email protected]>
  536. BaseCompareValidator.cs - Completed
  537. AdRotator.cs - Completed
  538. 2001-12-15 Gaurav Vaish <[email protected]>
  539. CommandEventArgs.cs - Completed
  540. DataGridCommandEventArgs.cs - Completed
  541. RepeaterCommandEventArgs.cs - Completed
  542. DataListCommandEventArgs.cs - Completed
  543. CompareValidator.cs - Partial Implementation
  544. 2001-12-02 Gaurav Vaish <[email protected]>
  545. CheckBoxList.cs - Partial Implementation.
  546. All except "Render"
  547. 2001-12-01 Gaurav Vaish <[email protected]>
  548. ListControl.cs - Completed
  549. 2001-11-30 Gaurav Vaish <[email protected]>
  550. CheckBox.cs - Completed
  551. ListControl.cs - Initial Implementation
  552. CheckBoxList.cs - Started with it, but first needed
  553. ListControl. Left it.
  554. 2001-11-29 Gaurav Vaish <[email protected]>
  555. CalendarDay.cs - Making a note that this
  556. has been implemented
  557. Calendar.cs - Making a note that have made some changes.
  558. Unimplmented functions throw
  559. NotImplementedException
  560. CheckBox.cs - Can now "Render" and "LoadPostData"
  561. 2001-11-08 Gaurav Vaish <[email protected]>
  562. WebControl.cs - Total Revamp, Partial Implementation
  563. AdRotator.cs - Able to load files
  564. AdCreatedEventArgs.cs - Implemented
  565. 2001-11-05 Gaurav Vaish <[email protected]>
  566. Calendar.cs - Initial Implementation
  567. ButtonColumn.cs - Initial Implementation
  568. Button.cs - Initial Implementation
  569. BoundColumn.cs - Initial Implementation
  570. BaseCompareValidator.cs - Minor Changes
  571. DataList.cs, BaseValidator.cs, BaseDataList.cs
  572. - Added more functions, other changes
  573. 2001-10-28 Gaurav Vaish <[email protected]>
  574. WebControl.cs - Initial Implementation
  575. DataList.cs - Initial Implementation
  576. BaseValidator.cs - Initial Implementation
  577. BaseDataList.cs - Initial Implementation
  578. 2001-10-27 Gaurav Vaish <[email protected]>
  579. AdCreatedEventArgs.cs - Initial Implementation
  580. AdCratedEventHandler.cs - Implemented
  581. AdRotator.cs - Initial Implementation
  582. BorderStyle.cs - Implemented
  583. ButtonColumnStyle.cs - Implemented
  584. CalendarSelectionMode.cs - Implemented
  585. DayNameFormat.cs - Implemented
  586. FirstDayOfWeek - Implemented
  587. FontInfo.cs - Partial Implementation
  588. FontSize.cs - Implemented
  589. GridLines.cs - Implemented
  590. HorizontalAlign.cs - Implemented
  591. HyperLink.cs - Initial Implementation
  592. ImageAlign.cs - Implemented
  593. IRepeatInfoUser.cs - Implemented
  594. ListItemType.cs - Implemented
  595. ListSelectionMode.cs - Implemented
  596. NextPrevFormat.cs - Implemented
  597. PagerMode.cs - Implemented
  598. PagerPosition.cs - Implemented
  599. RepeatDirection.cs - Implemented
  600. RepeatLayout.cs - Implemented
  601. TextAlign.cs - Implemented
  602. TextBoxMode.cs - Implemented
  603. TitleFormat.cs - Implemented
  604. UnitType.cs - Implemented
  605. ValidationCompareOperator.cs
  606. - Implemented
  607. ValidationDataType.cs - Implemented
  608. ValidationSummaryDisplayMode.cs
  609. - Implemented
  610. ValidatorDisplay.cs - Implemented
  611. VerticalAlign.cs - Implemented
  612. // File Created 2001-11-13