ChangeLog 46 KB

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