ChangeLog 61 KB

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