ChangeLog 48 KB

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