ChangeLog 30 KB

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