ChangeLog 28 KB

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