ChangeLog 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287
  1. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  2. * SelectedDatesCollection.cs: fix by Yaron for bug #49698.
  3. * ValidationSummary.cs: fixes bug #49669.
  4. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  5. * Calendar.cs: apply the calendar style to the new Table, not to itself.
  6. Fixes #49406.
  7. * CheckBox.cs: render the hidden fields if AutoPostBack.
  8. * Style.cs: don't render empty width/height. Small improvement in
  9. CopyFrom.
  10. * Table.cs: fixed condition for border width.
  11. * TableStyle.cs:
  12. (CopyFrom): always call the base class to copy other attributes. Fixes
  13. bug #49408. Don't render empty 'rules' attribute.
  14. * WebControl.cs: track viewstate when enabled. Don't overwrite source
  15. control attributes in CopyBaseAttributes.
  16. * ChangeLog: fixed dates.
  17. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  18. * WebControl.cs : Attributes { get; } - Is Complete.
  19. * ValidationSummary.cs : AddAttributesToRender(HtmlTextWriter)
  20. - Completed.
  21. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  22. * BaseValidator.cs : DetermineRenderUplevel() - Completed.
  23. : RegisterValidatorCommonScript()
  24. - More code, I need HELP!
  25. : RegisterValidatorDeclaration()
  26. - More code, I need HELP!
  27. 2003-09-29 Gonzalo Paniagua Javier <[email protected]>
  28. * CheckBoxList.cs: don't lose state when enabling/disabling. See bug
  29. #48802.
  30. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  31. * Repeater.cs: fixed bug #48807. It needed to use a DummyDataSource and
  32. ClearViewState only called when no items.
  33. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  34. * RadioButtonList.cs: fix for bug #48874 by Yaron Shkop.
  35. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  36. * RadioButtonList.cs: fix for bug #48870 by Yaron Shkop.
  37. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  38. * DataList.cs: fixed bug #48217. Patch by [email protected] (Yaron
  39. Shkop).
  40. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  41. * AdRotator.cs: fixes bug #48691. Patch by [email protected] (Yaron
  42. Shkop).
  43. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  44. * CheckBox.cs: render the 'disabled' attribute in the correct tag.
  45. * WebControl.cs: fixed Enabled property and save it in ViewState.
  46. Fixes bug #48802.
  47. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  48. * ListControl.cs: fixed bug #48668. Thanks to Yaron Shkop.
  49. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  50. * ListBox.cs: patch by [email protected] (Yaron Shkop) that fixes
  51. bug #48671.
  52. 2003-09-19 Gonzalo Paniagua Javier <[email protected]>
  53. * FontInfo.cs: fixed Name property as suggested by Rich Alimi
  54. <[email protected]>.
  55. 2003-09-14 Gonzalo Paniagua Javier <[email protected]>
  56. * RegularExpressionValidator.cs: fix for EvaluateIsValid by Juraj
  57. Skripsky <[email protected]>
  58. 2003-09-13 Gonzalo Paniagua Javier <[email protected]>
  59. * BaseValidator.cs: patch by Juraj Skripsky ([email protected]) that
  60. fixes rendering of the end tag.
  61. 2003-08-31 Gonzalo Paniagua Javier <[email protected]>
  62. * Repeater.cs: fix for Items property provided by [email protected]
  63. (Yaron Shkop). Closes bug #48060.
  64. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  65. * CheckBox.cs: in LoadPostData, only return
  66. true when the new data is different from the one we had. Fixed
  67. conditions to save Checked state. Thanks to [email protected]
  68. (Yaron Shkop).
  69. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  70. * Style.cs: Font.Strikeout renders as 'line-through'. Fixes bug #47871.
  71. 2003-08-25 Gonzalo Paniagua Javier <[email protected]>
  72. * WebControl.cs: removed dangling ^M and unneeded fields. Keep track
  73. of Enable in ViewState. Fixes bug #47865.
  74. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  75. * Style.cs: the MARKED bit is not send set in ViewState unless something
  76. is changed. Fixed TrackViewState condition.
  77. * WebControl.cs: save the base ViewState *after* ControlStyle is done,
  78. because it uses the same ViewState as the control. Fixes bug #47725.
  79. 2003-08-16 Gonzalo Paniagua Javier <[email protected]>
  80. * HyperLinkColumn.cs: patch from David Pickens <[email protected]>
  81. that fixes databinding when only DataTextField or DataNavigateUrlField
  82. is set.
  83. 2003-08-14 Gonzalo Paniagua Javier <[email protected]>
  84. * ListControl.cs: patch sent by Yaacov Akiba Slama <[email protected]> on
  85. behalf of Yaron Shkop <[email protected]> that fixes selection of
  86. values before assigning a data source and other issues.
  87. 2003-08-11 Gonzalo Paniagua Javier <[email protected]>
  88. * CheckBox.cs: save viewstate when needed and correctly handle post
  89. data. Fixes bug #47462.
  90. 2003-08-01 Andreas Nahr <[email protected]>
  91. * ButtonColumn.cs: Removed additional attributes
  92. * CheckBox.cs: Added attribute
  93. * DataGrid.cs: Added attributes
  94. * HyperLinkColumn.cs: Changed attributes, added lamespec
  95. * Style.cs: Removed attributes
  96. * TextBox.cs: Added/ removed attributes
  97. 2003-08-01 Andreas Nahr <[email protected]>
  98. * AdRotator.cs: Added all attributes
  99. * BaseDataList.cs: Added all attributes, added lamespec, removed additional attributes
  100. * BaseValidator.cs: Added all attributes
  101. * BoundColumn.cs: Added all attributes
  102. * Button.cs: Added all attributes
  103. * ButtonColumn.cs: Added all attributes, added lamespec
  104. * Calendar.cs: Added all attributes, added error checks, throws more exceptions
  105. * CheckBox.cs: Added all attributes
  106. * CheckBoxList.cs: Added all attributes
  107. * CompareValidator.cs: Added all attributes
  108. * CustomValidator.cs: Added all attributes
  109. * DataGrid.cs: Added all attributes, more verbose exceptions, fixed signature, removed additional attributes
  110. * DataGridColumn.cs: Added all attributes
  111. * DataGridColumnCollection.cs: Added all attributes
  112. * DataGridPagerStyle.cs: Added all attributes
  113. * DataGridTableInternal.cs: Made DataGridTableInternal internal
  114. * DataList.cs: Added all attributes, more verbose exceptions, removed non-existing member
  115. * DropDownList.cs: Added all attributes
  116. * FontInfo.cs: Added all attributes
  117. * HyperLink.cs: Added all attributes
  118. * HyperLinkColumn.cs: Added all attributes
  119. * Image.cs: Added all attributes
  120. * ImageButton.cs: Added all attributes
  121. * Label.cs: Added all attributes
  122. * LinkButton.cs: Added all attributes
  123. * ListBox.cs: Added all attributes, added error checks, throws more exceptions
  124. * ListControl.cs: Added all attributes
  125. * ListItem.cs: Added all attributes
  126. * ListItemCollection.cs: Added attribute
  127. * Literal.cs: Added all attributes
  128. * Panel.cs: Added all attributes
  129. * RadioButton.cs: Added all attributes
  130. * RadioButtonList.cs: Added all attributes, added error checks, throws more exceptions
  131. * RangeValidator.cs: Added all attributes
  132. * RegularExpressionValidator.cs: Added all attributes
  133. * Repeater.cs: Added all attributes
  134. 2003-07-30 Andreas Nahr <[email protected]>
  135. * RequiredFieldValidator.cs: Added all attributes
  136. * Style.cs: Added all attributes
  137. * Table.cs: Added all attributes
  138. * TableCell.cs: Added all attributes, added error checks, throws more exceptions
  139. * TableCellCollection.cs: Added attribute
  140. * TableRow.cs: Added all attributes
  141. * TableRowCollection: Added attribute
  142. * TableStyle.cs: Added all attributes, improved error messages
  143. * TemplateColumn.cs: Added all attributes
  144. * TextBox.cs: Added all attributes, added error checks, throws more exceptions
  145. * ValidationSummary.cs: Added all attributes
  146. * WebControl.cs: Added all attributes
  147. * Xml.cs: Added all attributes
  148. 2003-07-30 Gonzalo Paniagua Javier <[email protected]>
  149. * DataGrid.cs: fixed signature of ItemCreated and PageIndexChanged.
  150. * DataList.cs: fixed signature of ItemCreated and ItemDataBound.
  151. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  152. * CheckBoxList.cs: fixes bug reported on the list about the state of
  153. the CheckButtons not being preserved across posts.
  154. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  155. * ListControl.cs: added SelectedValue property (1.1). Closes 46412.
  156. 2003-06-30 Gonzalo Paniagua Javier <[email protected]>
  157. * AdRotator.cs: fixed bug #44271 and a few others bugs. Mono-stylized.
  158. 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
  159. * ListControl.cs: save viewstate data when any of the 3 values is not
  160. null. Fixed condition to save selection indices. Closes bug #45493.
  161. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  162. * DataGrid.cs: fixed bug #43823.
  163. 2003-05-29 Gonzalo Paniagua Javier <[email protected]>
  164. * DataGrid.cs: fixed delegate type for SortCommand.
  165. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  166. * DataGridColumnCollection.cs: added missing return in RemoveAt.
  167. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  168. * DataGridColumnCollection.cs: fixed LoadViewState for the columns.
  169. Don't save ViewState is the number of columns is 0.
  170. 2003-05-02 Gonzalo Paniagua Javier <[email protected]>
  171. * DataGrid.cs: get the right item Type for the property we're reading
  172. fromt the data source.
  173. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  174. * Label.cs:
  175. * TextBox.cs: added control builder attribute.
  176. 2003-03-29 Gonzalo Paniagua Javier <[email protected]>
  177. * DataGrid.cs: Fixed SaveViewState and type of ItemDataBound.
  178. 2003-03-17 George Kodinov <[email protected]>
  179. * Unit.cs: Called the correct method to get the Numeric locale for the
  180. double conversion
  181. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  182. * ButtonColumn.cs: fixed a couple of infinite loop problems and render
  183. correctly the header of the column.
  184. * DataGridTableInternal.cs: don't assign a default ID to this control.
  185. * LinkButton.cs: raise bubble event in OnCommand.
  186. * TableCellCollection.cs: fixed the index returned by Add.
  187. * TableRowCollection.cs: ditto.
  188. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  189. * Xml.cs: don't call MapPathSecure when setting DocumentSource.
  190. 2003-02-05 Gonzalo Paniagua Javier <[email protected]>
  191. * RangeValidator.cs: fixed bug #37577. Thanks to Stephane Tombeur
  192. for reporting the bug and providing the fix.
  193. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  194. * DataGrid.cs: AutoGenerateColumns defaults to true. Fixed
  195. CreateColumnSet. Set the owner of the column when auto generated.
  196. In PrepareControlHierarchyForItem, fixed for loop bound.
  197. * LinkButtonInternal.cs: fixed infinite recursion bug.
  198. Fixes bug #37124.
  199. 2003-01-22 Zdravko Tashev <[email protected]>
  200. * Xml.cs: a few fixes.
  201. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  202. * DataList.cs: handle the exception when adding new keys to
  203. DataKeysArray.
  204. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  205. * BaseDataList.cs: what can I say for this one? I spent so many time
  206. until I finally found this that I'm gonna miss this f....g bug... ;-).
  207. Farewell. Now we can get events from image buttons inside Data*.
  208. * DataList.cs: now the value stored in ViewState for item count is
  209. correct.
  210. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  211. * DataGrid.cs: default value for ShowHeaders is true. Fixed style for
  212. Header and Footer.
  213. * DataGridColumn.cs: added SetOwner method.
  214. * DataGridColumnCollection.cs: set the owner of the column when added.
  215. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  216. * BoundColumn.cs: typo.
  217. * DataGrid.cs: use 'as' instead of casting. Typo.
  218. * HyperLinkColumn.cs: call OnColumnChanged when any property change.
  219. Mono-stylized.
  220. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  221. * HyperLink.cs: fixes bug #36336.
  222. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  223. * DataList.cs: fixed IRepeatInfoUser.GetItemStyle.
  224. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  225. * BaseValidator.cs: return an empty string in GetControlValidationValue
  226. when GetValue returned null.
  227. * CompareValidator.cs: fixed EvaluateIsValid.
  228. * RegularExpressionValidator.cs: fixed EvaluateIsValid.
  229. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  230. * Xml.cs: use MapPathSecure to get the path of the document.
  231. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  232. * DataList.cs: fixed header & footer.
  233. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  234. * DataList.cs: for header and footer don't use data source.
  235. Instantiate in the DataListItem, not in the DataList.
  236. databind-template.aspx works now.
  237. 2002-11-21 Gonzalo Paniagua Javier <[email protected]>
  238. * BaseDataList.cs:
  239. (Render): call RenderContents (), not base.RenderContents ().
  240. * DataList.cs: style.
  241. But I still haven't found what i'm looking for....
  242. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  243. * Calendar.cs: fixed loading/saving selected dates.
  244. * SelectedDatesCollection.cs: added internal function to get the
  245. underlying ArrayList.
  246. Calendar navigation works again. Selecting dates too.
  247. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  248. * DataList.cs: added a few attributes and fixed infinite recursion.
  249. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  250. * ListItemCollection.cs: fixed LoadViewState.
  251. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  252. * TableItemStyle.cs: TypeDescriptor.GetConverter seems to fail.
  253. Commented out some code until it works.
  254. 2002-10-29 Gaurav Vaish <[email protected]>
  255. * BaseCompareValidator.cs - Fixed operator bug in
  256. Compare(string, string, ...)
  257. * CompareValidator.cs - EvaluateIsValid() : Implemented.
  258. 2002-10-28 Gaurav Vaish <[email protected]>
  259. * BoundColumn.cs - InitializeCell(TableCell, int, ListItemType)
  260. : Implemented.
  261. - All Properties : Now make use of ViewState.
  262. 2002-10-28 Gaurav Vaish <[email protected]>
  263. * BaseValidator.cs - Uncomment NotImplementedException.
  264. 2002-10-28 Gaurav Vaish <[email protected]>
  265. * BaseValidator.cs - Minor changes in TODO comments.
  266. 2002-10-28 Gaurav Vaish <[email protected]>
  267. * BaseValidator.cs - DetermineRenderUpLevel() : Uncomment
  268. the NotImplementedException being thrown.
  269. * DataGridPagerStyle.cs - Mode { set; } : Implemented.
  270. * DataGridLinkButton.cs - Added new class (private) : Implemented.
  271. * DataGrid.cs - InitializePager(DataGridItem, int,
  272. PagedDataSource) : Implemented.
  273. 2002-10-28 Gaurav Vaish <[email protected]>
  274. * DataList.cs - PrepareControlHierarchy() : Implemented.
  275. 2002-10-28 Gaurav Vaish <[email protected]>
  276. * DataList.cs - RenderContents(HtmlTextWriter) : Implemented.
  277. - GetItem(ListItemType, int) : Removed TODO.
  278. - CreateControlHierarchy(bool) : Implemented.
  279. - CreateItem(int, ListItemType) : Implemented.
  280. - CreateItem(int, ListItemType,
  281. bool, object) : Implemented.
  282. - InitializeItem(DataItem) : Implemented.
  283. * DataGrid.cs - CreateControlHierarchy(bool) : Bug fix.
  284. The ViewState["_!ItemCount"],
  285. ViewState["_!DataSource_ItemCount"]
  286. are shared by DataList and DataGrid, and hence
  287. should share the same name.
  288. - ResolveDataSource(object, string)
  289. : Removed. Use System.Web.UI.Utils.DataSourceHelper
  290. ::GetResolvedDataSource(object, string).
  291. 2002-09-12 Gonzalo Paniagua Javier <[email protected]>
  292. * DataGrid.cs: fixed compilation
  293. 2002-09-12 Gaurav Vaish <[email protected]>
  294. * PagedDataSource.cs - FirstIndexInPage : Fixed bug.
  295. * DataGrid.cs - CreateControlHierarchy(bool)
  296. : working towards completion.
  297. - ResolveDataSource(object, string)
  298. : stubbed new method
  299. - CreateItem(....)
  300. : stubbed new method
  301. Well. It's almost done.
  302. * DataGridTableInternal.cs
  303. - Added new internal class.
  304. 2002-08-28 Gaurav Vaish <[email protected]>
  305. * DataSourceInternal.cs - Added new class (internal).
  306. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  307. * FontUnit.cs:
  308. * HorizontalAlign.cs:
  309. * Unit.cs:
  310. * VerticalAlign.cs: fixes based on class status page.
  311. * HorizontalAlignConverter.cs: implemented.
  312. * VerticalAlignConverter.cs: implemented.
  313. * FontUnitConverter.cs: implemented GetStandardValues ().
  314. * WebColorConverter.cs: implemented ConvertFrom () and ConvertTo ().
  315. 2002-08-19 Gaurav Vaish <[email protected]>
  316. * DataGrid.cs - AutoCreateColumns: Bug fixes.
  317. 2002-08-19 Gaurav Vaish <[email protected]>
  318. * DataGrid.cs - AutoCreateColumns: completed, hopefully!
  319. 2002-08-19 Gaurav Vaish <[email protected]>
  320. * DataGrid.cs - Working on the undocumented protected
  321. method CreateColumnSet. AutoCreateColumns method
  322. stubbed. Left CreateControlHierarchy for the time
  323. being, looks like I'm going insane. ;-)
  324. 2002-08-19 Gaurav Vaish <[email protected]>
  325. * Button.cs - Steffen's OnCommand bug fix.
  326. 2002-08-12 Gaurav Vaish <[email protected]>
  327. * DataGrid.cs - Added protected method (skeleton)
  328. CreateColumnSet(PagedDataSource, bool)
  329. Still trying to know how will it be used
  330. and what for...
  331. 2002-08-10 Gonzalo Paniagua Javier <[email protected]>
  332. * PagedDataSource.cs: fixed compilation.
  333. 2002-08-08 Gaurav Vaish <[email protected]>
  334. * DataGrid.cs - Added private method
  335. CreatePagedDataSource
  336. - Started work on
  337. CreateControlHierarchy(bool)
  338. * PagedDataSource.cs - Bug fixed.
  339. CurrentPageIndex is writable.
  340. 2002-08-07 Gonzalo Paniagua Javier <[email protected]>
  341. * DataGrid.cs: fixed typo.
  342. * DataGridPagerStyle.cs: added IsPagerOnTop and IsPagerOnBottom.
  343. 2002-08-06 Gaurav Vaish <[email protected]>
  344. * DataGridColumn.cs - Added internal methods to get the
  345. various styles (needed in DataGrid.cs)
  346. * DataGrid.cs - Completed the method
  347. PrepareControlHierarchy()
  348. 2002-08-06 Gaurav Vaish <[email protected]>
  349. * DataGrid.cs - Wokring on PrepareControlHierarchy()
  350. - Added private method
  351. PrepareControlHierarchyForItem()
  352. 2002-08-05 Gaurav Vaish <[email protected]>
  353. * DataGrid.cs - Completed method
  354. OnBubbleEvent(object, EventArgs)
  355. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  356. * Xml.cs: implemented document/transform load.
  357. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  358. * Calendar.cs: added myself to the list of authors.
  359. * DropDownList.cs: fixed a few properties.
  360. * ListControl.cs: fixed SelectedIndex.
  361. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  362. * Calendar.cs: lots of fixes. Render days. Still left to persist
  363. selected days when changing month.
  364. * Unit.cs: fixed Percentage and Pixel.
  365. * WebControl.cs: a few properties are now using ControlStyle instead
  366. of ViewState to persist.
  367. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  368. * BaseValidator.cs: it works now.
  369. * DataGridColumn.cs: added attribute and made it abstract.
  370. * RequiredFieldValidator.cs: fixed return value in EvaluateIsValid.
  371. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  372. * TextBox.cs: default for Wrap is true.
  373. (OnPreRender): don't save Text if there are no listeners on TextChanged.
  374. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  375. * DropDownList.cs:
  376. (ToolTip): fixed.
  377. * ListItem.cs:
  378. (LoadViewState): fixed.
  379. * ListItemCollection.cs:
  380. (TrackViewState): use items instead of 'this' in foreach.
  381. * Style.cs:
  382. (LoadViewState): more checking of parameters.
  383. * WebControl.cs: implemented LoadViewState and SaveViewState.
  384. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  385. * ListItem.cs: there was no code to unset the flags!!!
  386. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  387. * FontUnit.cs: use a hashtable for mapping size name to value.
  388. * HyperLink.cs: fixed a bug and a typo.
  389. * Unit.cs: some fixes to internal constructor.
  390. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  391. * ListControl.cs: fixed a couple of range checks.
  392. * WebControl.cs: MS lies! Not all WebControls must be rendered inside
  393. an HtmlForm (p.e., Label).
  394. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  395. * AdRotator.cs:
  396. * Button.cs:
  397. * Calendar.cs:
  398. * CheckBox.cs:
  399. * CheckBoxList.cs:
  400. * DataList.cs:
  401. * DropDownList.cs:
  402. * HyperLink.cs:
  403. * HyperLinkColumn.cs:
  404. * Image.cs:
  405. * ImageButton.cs:
  406. * Label.cs:
  407. * LinkButton.cs:
  408. * ListBox.cs:
  409. * Panel.cs:
  410. * PlaceHolder.cs:
  411. * RadioButton.cs:
  412. * RadioButtonList.cs:
  413. * Table.cs:
  414. * TableRow.cs:
  415. * TextBox.cs:
  416. * WebControl.cs: removed attributes added by mistake (i used
  417. GetCustomAttributes (true), d'oh!).
  418. * DataListItem.cs: implemented RenderItem.
  419. * Repeater.cs: implemented CreateItem and InitializeItem.
  420. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  421. * BaseDataList.cs: a couple of fiex and added attributes.
  422. * DataGrid.cs: little fixes.
  423. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  424. * CheckBoxList.cs:
  425. * DataGrid.cs:
  426. * DataList.cs:
  427. * DropDownList.cs:
  428. * ListBox.cs:
  429. * PlaceHolder.cs:
  430. * RadioButton.cs:
  431. * RadioButtonList.cs:
  432. * TableRow.cs:
  433. * WebControl.cs:
  434. * Xml.cs: forgot to add using System.ComponentModel.
  435. * BaseValidator.cs: use explicitly
  436. System.ComponentModel.AttributeCollection as there is another class
  437. with the same name under System.Web.UI.
  438. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  439. * AdRotator.cs:
  440. * Button.cs:
  441. * Calendar.cs:
  442. * CheckBox.cs:
  443. * CheckBoxList.cs:
  444. * DataGrid.cs:
  445. * DataList.cs:
  446. * DropDownList.cs:
  447. * HyperLink.cs:
  448. * Image.cs:
  449. * ImageButton.cs:
  450. * Label.cs:
  451. * LinkButton.cs:
  452. * ListBox.cs:
  453. * Panel.cs:
  454. * PlaceHolder.cs:
  455. * RadioButton.cs:
  456. * RadioButtonList.cs:
  457. * Table.cs:
  458. * TableRow.cs:
  459. * TextBox.cs:
  460. * WebControl.cs:
  461. * Xml.cs: added/fixed all attributes used by xsp.
  462. * BaseValidator.cs: some fixes.
  463. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  464. * Table.cs:
  465. (AddAttributesToRender): correctly default to border=1.
  466. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  467. * AdRotator.cs:
  468. (LoadAdFile): make the dictionary null after every iteration.
  469. * LinkButton.cs:
  470. * ListControl.cs:
  471. * ListItem.cs: fixed warnings.
  472. Mon Jul 1 16:23:15 CEST 2002 Paolo Molaro <[email protected]>
  473. * Style.cs, TableRow.cs, DataListItem.cs: fix compilation.
  474. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  475. * DataGridColumn.cs:
  476. * DataGridPagerStyle.cs:
  477. * DataList.cs:
  478. * DataListItem.cs:
  479. * Image.cs:
  480. * LinkButton.cs:
  481. * ListControl.cs:
  482. * ListItem.cs:
  483. * ListItemCollection.cs:
  484. * Repeater.cs:
  485. * ServerValidateEventArgs.cs:
  486. * Style.cs:
  487. * TableRow.cs:
  488. * WebControl.cs:
  489. * Xml.cs: more class status page based changes.
  490. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  491. * Button.cs:
  492. (.ctor): fixed to render the correct tag.
  493. (IPostBAckEventHandler.RaisePostBackEvent): fixed.
  494. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  495. * WebControl.cs:
  496. (AddAttributesToRender): call Page.VerifyRenderingInServerForm. All
  497. WebControl derived classes should be rendered inside a HtmlForm.
  498. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  499. * Repeater.cs: implemented CreateControlHierarchy. Fixed some event
  500. processing methods.
  501. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  502. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  503. * RepeatInfo.cs: implemented DoHorizontalRendering.
  504. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  505. * System.Web.UI.WebControls/Repeater.cs:
  506. (Controls):
  507. (OnDataBinding): fixed stack overflow.
  508. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  509. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  510. * RepeatInfo.cs: implemented DoHorizontalRendering.
  511. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  512. * WebControl.cs:
  513. (CopyBaseAttributes): copy Attributes and don't throw exception.
  514. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  515. * ListBox.cs: mono-stylized.
  516. (AddAttributesToRender): call parent class method.
  517. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  518. * Style.cs: fixed IsEmpty and Width.
  519. * Table.cs: mono-stylized.
  520. (TableRowControlCollection.AddAt): fixed.
  521. (AddAttributesToRender): fixed.
  522. * TableCell.cs: mono-stylized.
  523. (.ctor): use PreventAutoID.
  524. (AddAttributesToRender): fixed.
  525. (AddParsedSubObject): fixed.
  526. * TableRow.cs: mono-stylized. Added
  527. ParseChildren attribute.
  528. * TableStyle.cs:
  529. (get_GridLine): fixed.
  530. 2002-06-16 Gonzalo Paniagua Javier <[email protected]>
  531. * Panel.cs: fixed stack overflow.
  532. * Unit.cs: use Int32.Parse and Single.Parse instead of Int32Converter
  533. and SingleConverter.
  534. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  535. * RadioButton.cs: mono-stylized and some little fixes.
  536. * TextBox.cs: mono-stylized.
  537. (MaxLength): fixed typo.
  538. (AddAttributesToRender): don't render the text between the tags for
  539. SingleLine, use value attribute for it. Don't render the text for
  540. Password.
  541. (OnPreRender): don't throw exception and call base.OnPreRender.
  542. (Render): for MultiLine, render the text between the opening and
  543. closing tags encoded as HTML.
  544. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  545. * ImageButton.cs:
  546. (AddAttributesToRender): fixer another stack overflow.
  547. * WebControl.cs:
  548. (TagName): modified to use TagKey instead of tagKey as the property
  549. can be overriden.
  550. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  551. * LinkButton.cs: mono-stylized.
  552. (AddParsedSubObject):
  553. (RenderControls): little fixes.
  554. * WebControl.cs:
  555. (AddAttributesToRender): fixed usage of IEnumerator.
  556. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  557. * Literal.cs: beautified.
  558. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  559. * Label.cs: beautified and fixed a couple of 'classic' bugs.
  560. * WebControl.cs: use Span as default tag when no other provided in
  561. constructor. That is what MS renders.
  562. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  563. * Button.cs:
  564. (AddAttributesToRender): fixed (classic) stack overflow.
  565. * CheckBox.cs: mono-stylized.
  566. (AutoPostBack): fixed stack overflow.
  567. (Render): fixed alignment issues. Also set the For attribute always
  568. for the label.
  569. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  570. * AdRotator.cs: GetData does not work as it should, but now it returns
  571. useful data (only the first ad in the file). Set the NavigateUrl
  572. property in the hyperlink if available.
  573. * HyperLink.cs: fixed constructor and a couple of stack overflows.
  574. * Image.cs: added an attribute and fixed stack overflow.
  575. * WebControl.cs:
  576. (RenderBeginTag): fixed.
  577. (TagName): don't call Enum.IsDefined twice.
  578. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  579. * WebControl.cs: added attributes PersistChildrenAttribute and
  580. ParseChildrenAttribute.
  581. 2002-05-24 Duncan Mak <[email protected]>
  582. * DataGridItem.cs (SetItemType): Changed function signature to
  583. match 1.0 spec.
  584. * ListItemCollection.cs (this): Changes the visibility level of
  585. the indexer.
  586. * Repeater.cs (OnItemCommand):
  587. (OnItemCreated):
  588. (OnItemDataBound): Added necessary casts.
  589. 2002-05-07 Duncan Mak <[email protected]>
  590. * Button.cs (AddAttributesToRender):
  591. * ImageButton.cs (AddAttributesToRender): Added a missing argument to the
  592. GetClientValidatedEvent method.
  593. 2002-03-27 Gaurav Vaish <[email protected]>
  594. * Removed extra methods, corrected access modifiers to several
  595. methods.
  596. 2002-03-26 Gaurav Vaish <[email protected]>
  597. * <SeveralFiles>.cs - Added some attributes
  598. * FontUnitConverter.cs - Added stubs for GetStandardValues*(..)
  599. methods. Will complete them later. Right now, busy with
  600. the attributes part.
  601. * RepeaterItem.cs - Completed.
  602. Oh God! Mercy! I will die applying attributes. I look at the missing
  603. part in the class-status - daemon! Kyrie eleison!
  604. 2002-03-19 Gaurav Vaish <[email protected]>
  605. Some bug fixes
  606. * AdRotator.cs - Added definition for Font.
  607. * BaseCompareValidator.cs - Added definition for Controls.
  608. * Calendar.cs - SelectMonthText definition corrected.
  609. * DataList.cs - Added definition for SeparatorTemplate.
  610. * BorderStyle.cs - Namespace correction. It belongs not to UI,
  611. but to UI.WebControls.
  612. 2002-03-17 Gaurav Vaish <[email protected]>
  613. Finally, I have made it. Today I did a second build for the
  614. System.Web assembly. It compiled 195 classes today.
  615. I am waiting eagerly for the runtime to come up so that the objects
  616. may be tested to their last levels. Several of the methods are still
  617. under the tag of "TODO" throwing NotImplementedException. Well, I
  618. hope to remove them soon, but how far is this soon - even I don't
  619. know, though I am happy to make the build a success even before
  620. the vacations to come.
  621. 2002-03-07 Gaurav Vaish <[email protected]>
  622. Yesterday and today I tried to do some building of the aseembly,
  623. but was dumped with uncoutably infinite errors. ;-)
  624. I have put the copies of the recent errors on my home page, want
  625. to have a look at them? See:
  626. http://mastergaurav.virtualave.net/mono/
  627. I don't know what to do with these errors. Oh! The buggy me! How
  628. will I overcome myself. Hopefully, by when my vacations over, I
  629. should have made a repository where the build will not fail.
  630. 2002-03-05 Gaurav Vaish <[email protected]>
  631. I am now going to do a build that will include the
  632. System.Web.UI.WebControls namespace. Hoping that I will make it
  633. soon. My exams are coming near and I have to pack up soon.
  634. 2002-03-04 Gaurav Vaish <[email protected]>
  635. Comments:
  636. And with this, ie, today's work, all the objects mentioned in the
  637. namespace appear in the implementation. But it may not be worth
  638. trying to go for a build because of dependence of several of the
  639. internal methods that may clash with already available assembly
  640. System.Web.
  641. Also, the classes lack possible attributes, like those informing
  642. about child-controls etc. But I have to first create the attribute
  643. classes before I attach the attributes to the classes.
  644. * CustomValidator.cs - Completed. In process realized that
  645. I have to complete / rejuvinate BaseValidator class.
  646. * BaseValidator.cs - Complete rejuvination. Completed 80%
  647. of the job. All that is left is Render(HtmlTextWriter),
  648. DetermineRenderUplevel(), RegisterValidatorCommonScript()
  649. RegisterValidatorDeclaration()
  650. * DataGridPagerStyle.cs - Completed. That adds one more missle
  651. in my artillery.
  652. * DataKeyCollection.cs - Completed. Petty small.
  653. * Repeater.cs - Work started off. This is a quite
  654. heavy class. Hooh!
  655. * DataGridItemEventArgs.cs,
  656. * DataGridShortCommandEventArgs.cs,
  657. * DataListItemEventArgs.cs,
  658. * MonthChangedEventArgs.cs,
  659. * RepeaterItemEventArgs.cs,
  660. * ServerValidateEventArgs.cs,
  661. * DataGridPageChangedEventArgs.cs
  662. - Damn, I marked them "*", while they
  663. did not exist.
  664. * Repeater.cs - Done all except for an undocumented
  665. method CreateControlHierarchy(bool). Though the method
  666. is quite clear by its name, but it will take some time
  667. for me to come with some material to flush in.
  668. 2002-03-03 Gaurav Vaish <[email protected]>
  669. * SelectedDatesCollection.cs - Completed.
  670. * PagedDataSource.cs - Completed. Pathetically nice class.
  671. * RegularExpressionValidator.cs
  672. - Completed. Ridiculously small and
  673. annoyinglyc crazy-driving class, basically the method
  674. EvaluateIsValid().
  675. * RangeValidator.cs - Completed.
  676. * DataGridColumn.cs - Completed.
  677. * EditCommandColumn.cs - All is complete except for the
  678. InitializeCell(TableCell, int, ListItemType) method.
  679. * DataListItem.cs - All done except for a longish method
  680. RenderItem(HtmlTextWriter, bool, bool)
  681. 2002-03-02 Gaurav Vaish <[email protected]>
  682. * RepeaterItemCollection.cs - Completed.
  683. I love *Collection classes. I am planning to make a
  684. program that will generate a *Collection class. It's so
  685. simple and the same. ;-)
  686. * DataGridColumnCollection.cs - Completed.
  687. ... except probably for *ColumnCollection classes, where
  688. you have to put in some more effort. Still, these class
  689. generation can be automated.
  690. * DataListItemCollection.cs - Completed.
  691. See, how easily, in less than a quarter of a minute, I
  692. completed this class - manually. Copy-Paste/Cut-Replace.
  693. 2002-02-21 Gaurav Vaish <[email protected]>
  694. * DataGrid.cs - Following methods implemented:
  695. TrackViewState(), LoadViewState(object), SaveViewState(),
  696. On* -- The event raisers.
  697. OnBubbleEvent(object, EventArgs) is still incomplete.
  698. * DataGridItem.cs - Initial Implementation
  699. * DataGridItemCollection.cs - Completed.
  700. 2002-02-08 Gaurav Vaish <[email protected]>
  701. * DataGrid.cs - Initial Implementation. Worked
  702. primarily with some properties.
  703. 2002-02-07 Gaurav Vaish <[email protected]>
  704. * ListBox.cs - Completed. Implemented
  705. LoadPostData(string, NameValueCollection)
  706. * RequiredFieldValidator.cs - Completed. Pretty simple class.
  707. 2002-02-06 Gaurav Vaish <[email protected]>
  708. * ListBox.cs - Implemented the following:
  709. RaisePostDataChangedEvent()
  710. 2002-02-02 Gaurav Vaish <[email protected]>
  711. * ListBox.cs - Supports the following properties:
  712. BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
  713. ToolTip.
  714. Methods:
  715. AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
  716. RenderContents(HtmlTextWriter)
  717. 2002-02-01 Gaurav Vaish <[email protected]>
  718. * TargetConverter.cs - Completed
  719. * TemplateColumn.cs - Completed
  720. * DataList.cs - Corrected the get-er methods for the
  721. *Style objects. Corrected the get/set-er methods for ViewState
  722. related objects.
  723. Addded support for properties:
  724. GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
  725. RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
  726. SelectedItem, SelectedItemStyle, SelectedItemTemplate,
  727. SeparatorStyle, SeparatorItemTemplate.
  728. Events:
  729. CancelCommand, DeleteCommand, EditCommand, ItemCommand,
  730. ItemCreated, ItemDataBound, UpdateCommand.
  731. Methods:
  732. CreateControlStyle(), LoadViewState(object),
  733. SaveViewState(), TrackViewState
  734. Event handlers:
  735. OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
  736. OnEditCommand, OnItemCommand, OnItemCreated,
  737. OnItemDataBound, OnUpdateCommand
  738. Added dummy methods for some undocumented methods:
  739. CreateControlHierarchy(bool), CreateItem(int, ListItemType),
  740. CreateItem(int, ListItemType, bool, object),
  741. PrepareControlHierarchy(), InitializeItem(DataListItem)
  742. * ListBox.cs - Started working.
  743. 2002-01-31 Gaurav Vaish <[email protected]>
  744. * RepeaterInfo.cs - Initial Implementation. Done all
  745. except for RepeatDirection.Vertical
  746. * TableStyle.cs - Completed
  747. 2002-01-30 Gaurav Vaish <[email protected]>
  748. * DropDownList.cs - Completed
  749. * ListItemCollection.cs - Added method FindByValueInternal to
  750. assist in the derived classes.
  751. Discovered bug in FindByValue. Removed
  752. * UnitConverter.cs - Completed
  753. * PlaceHolder.cs - What can be simpler than this?
  754. * PlaceHolderControlBuilder.cs
  755. - Uh! Damn cool one.
  756. * RadioButtonList.cs - Initial Implementation. All is done
  757. except for the implementation of
  758. method IRepeatInfoUser.RenderItem(...)
  759. * ValidatedControlConverter.cs
  760. ^^^^^^^^^^^^^^^^^^^^^^^^^ - Looks complete. Doubtful though !!
  761. * ValidationSummary.cs - Initial Implementation.
  762. * WebColorConverter.cs - Initial Implementation
  763. 2002-01-27 Gaurav Vaish <[email protected]>
  764. * FontNamesConverter.cs - Completed
  765. * FontUnitConverter.cs - Partial Implementation
  766. * ListItemControlBuilder.cs - Completed
  767. 2002-01-27 Gaurav Vaish <[email protected]>
  768. * TextBox.cs - All done except *Render* methods
  769. * TextBoxControlBuilder.cs - Completed
  770. * Xml.cs - Partial Implementation
  771. 2002-01-26 Gaurav Vaish <[email protected]>
  772. * RadioButton.cs - Completed
  773. * TextBox.cs - Partial Implementation
  774. 2002-01-25 Gaurav Vaish <[email protected]>
  775. * Panel.cs - Completed
  776. * TableItemStyle.cs - Completed
  777. 2002-01-18 Gaurav Vaish <[email protected]>
  778. * TableCellCollection.cs - Completed
  779. * TableRowCollection.cs - Completed
  780. * TableHeaderCell.cs - Completed
  781. * TableRow.cs - Completed
  782. 2002-01-09 Gaurav Vaish <[email protected]>
  783. * TableCellControlBuilder.cs - Completed
  784. * Table.cs - Completed
  785. * TableCell.cs - Completed
  786. 2002-01-07 Gaurav Vaish <[email protected]>
  787. * CheckBoxList.cs - Completed
  788. * ButtonColumn.cs - Completed
  789. * Button.cs - Completed
  790. 2001-12-28 Gaurav Vaish <[email protected]>
  791. * HyperLink.cs - Completed
  792. * Image.cs - Completed
  793. * ImageButton.cs - Completed
  794. * Label.cs - Completed
  795. * LabelControlBuilder.cs - Completed
  796. * LinkButton.cs - Completed
  797. * LinkButtonControlBuilder.cs - Completed
  798. * Literal.cs - Completed
  799. * LieteralControlBuilder.cs - Completed
  800. * FontUnit.cs - Completed
  801. 2001-12-27 Gaurav Vaish <[email protected]>
  802. * Calendar.cs - Completed the functions of Render*,
  803. ViewStates (Track/View/Save),
  804. RaisePostBackEvent.
  805. Left: RenderAllDays (partially)
  806. 2001-12-21 Gaurav Vaish <[email protected]>
  807. * Calendar.cs - Added some more functions
  808. * Style.cs - Completed
  809. * ListItem.cs - Completed
  810. * ListItemCollection.cs - Completed
  811. Made the first successful build of System.Web.dll that included
  812. System.Web.UI.WebControls!
  813. 2001-12-20 Gaurav Vaish <[email protected]>
  814. FontInfo.cs - Complete revamp. Completed
  815. 2001-12-19 Gaurav Vaish <[email protected]>
  816. ListItemCollection.cs - Completed
  817. ListItem.cs - Initial Implementation
  818. Style.cs - Initial Implementation
  819. Right now I am in a total mood to do a successful build. Creating so many
  820. classes, completing classes in System.Web System.Web.UI namespaces.
  821. 2001-12-18 Gaurav Vaish <[email protected]>
  822. TODO - Properly added
  823. CheckBox.cs - Completed
  824. BaseDataList.cs - Completed
  825. DayRenderEventArgs.cs - Completed
  826. RepeaterItem.cs - Initial implementation
  827. 2001-12-17 Gaurav Vaish <[email protected]>
  828. BaseCompareValidator.cs - Completed
  829. AdRotator.cs - Completed
  830. 2001-12-15 Gaurav Vaish <[email protected]>
  831. CommandEventArgs.cs - Completed
  832. DataGridCommandEventArgs.cs - Completed
  833. RepeaterCommandEventArgs.cs - Completed
  834. DataListCommandEventArgs.cs - Completed
  835. CompareValidator.cs - Partial Implementation
  836. 2001-12-02 Gaurav Vaish <[email protected]>
  837. CheckBoxList.cs - Partial Implementation.
  838. All except "Render"
  839. 2001-12-01 Gaurav Vaish <[email protected]>
  840. ListControl.cs - Completed
  841. 2001-11-30 Gaurav Vaish <[email protected]>
  842. CheckBox.cs - Completed
  843. ListControl.cs - Initial Implementation
  844. CheckBoxList.cs - Started with it, but first needed
  845. ListControl. Left it.
  846. 2001-11-29 Gaurav Vaish <[email protected]>
  847. CalendarDay.cs - Making a note that this
  848. has been implemented
  849. Calendar.cs - Making a note that have made some changes.
  850. Unimplmented functions throw
  851. NotImplementedException
  852. CheckBox.cs - Can now "Render" and "LoadPostData"
  853. 2001-11-08 Gaurav Vaish <[email protected]>
  854. WebControl.cs - Total Revamp, Partial Implementation
  855. AdRotator.cs - Able to load files
  856. AdCreatedEventArgs.cs - Implemented
  857. 2001-11-05 Gaurav Vaish <[email protected]>
  858. Calendar.cs - Initial Implementation
  859. ButtonColumn.cs - Initial Implementation
  860. Button.cs - Initial Implementation
  861. BoundColumn.cs - Initial Implementation
  862. BaseCompareValidator.cs - Minor Changes
  863. DataList.cs, BaseValidator.cs, BaseDataList.cs
  864. - Added more functions, other changes
  865. 2001-10-28 Gaurav Vaish <[email protected]>
  866. WebControl.cs - Initial Implementation
  867. DataList.cs - Initial Implementation
  868. BaseValidator.cs - Initial Implementation
  869. BaseDataList.cs - Initial Implementation
  870. 2001-10-27 Gaurav Vaish <[email protected]>
  871. AdCreatedEventArgs.cs - Initial Implementation
  872. AdCratedEventHandler.cs - Implemented
  873. AdRotator.cs - Initial Implementation
  874. BorderStyle.cs - Implemented
  875. ButtonColumnStyle.cs - Implemented
  876. CalendarSelectionMode.cs - Implemented
  877. DayNameFormat.cs - Implemented
  878. FirstDayOfWeek - Implemented
  879. FontInfo.cs - Partial Implementation
  880. FontSize.cs - Implemented
  881. GridLines.cs - Implemented
  882. HorizontalAlign.cs - Implemented
  883. HyperLink.cs - Initial Implementation
  884. ImageAlign.cs - Implemented
  885. IRepeatInfoUser.cs - Implemented
  886. ListItemType.cs - Implemented
  887. ListSelectionMode.cs - Implemented
  888. NextPrevFormat.cs - Implemented
  889. PagerMode.cs - Implemented
  890. PagerPosition.cs - Implemented
  891. RepeatDirection.cs - Implemented
  892. RepeatLayout.cs - Implemented
  893. TextAlign.cs - Implemented
  894. TextBoxMode.cs - Implemented
  895. TitleFormat.cs - Implemented
  896. UnitType.cs - Implemented
  897. ValidationCompareOperator.cs
  898. - Implemented
  899. ValidationDataType.cs - Implemented
  900. ValidationSummaryDisplayMode.cs
  901. - Implemented
  902. ValidatorDisplay.cs - Implemented
  903. VerticalAlign.cs - Implemented
  904. // File Created 2001-11-13