ChangeLog 45 KB

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