2
0

ChangeLog 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418
  1. 2005-01-20 Gonzalo Paniagua Javier <[email protected]>
  2. * CheckBox.cs: when rendering the input tag inside a span tag, keep the
  3. attributes that are meant to be in the input tag in their place.
  4. 2005-01-10 Juraj Skripsky <[email protected]>
  5. * RepeatInfo.cs: fixed bug #68927 (DataList with RepeatLayout='Flow'
  6. generates invalid html).
  7. 2005-01-10 Lluis Sanchez Gual <[email protected]>
  8. * Menu.cs: Implemented most of missing properties. Added support for
  9. item templates. Implemented menu scrolling.
  10. * MenuItemBinding.cs: Implemented most of missing properties.
  11. * MenuItem.cs: Implemented most of missing properties.
  12. * Menu.js: Implemented scrolling and menu reposition into screen.
  13. * MenuItemTemplateContainer.cs: Implemented.
  14. * SubMenuStyle.cs: Implemented.
  15. 2004-12-20 Lluis Sanchez Gual <[email protected]>
  16. * Style.cs: Implemented RegisteredCssClass property. Added
  17. CopyTextStylesFrom method, which copies styles that only apply to text.
  18. * Menu.cs, Menu.js: Added hover style support. Define all menu styles
  19. in the page stylesheet. Added support for ItemSpacing property.
  20. * MenuItemStyle.cs: Implemented FillStyleAttributes method.
  21. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  22. * Style.cs: Generate styles using a CssStyleCollection, so the code can
  23. be reused for the 2.0 FillStyleAttributes method.
  24. * Menu.cs: Implemented more properties and events. Rendering is very
  25. complete now.
  26. * MenuItem.cs: Added PopOutImageUrl property.
  27. * Menu.js: More work on submenu management.
  28. 2004-12-10 Lluis Sanchez Gual <[email protected]>
  29. * Menu.cs: Implemented basic rendering. Added some missing properties.
  30. * MenuItem.cs: Improved implementation of Depth.
  31. * Unit.cs: Added serializable attribute.
  32. * TreeView.cs: Moved GetScriptLiteral method to ClientScriptManager,
  33. so it can be reused.
  34. * Menu.js: New script to support he Menu control.
  35. 2004-12-03 Lluis Sanchez Gual <[email protected]>
  36. * MenuEventArgs.cs: Changed to sealed.
  37. * TreeView.cs: Minor fix.
  38. * Menu.cs, MenuItemBindingCollection.cs, MenuItemCollection.cs,
  39. MenuItemStyle.cs, MenuItemBinding.cs, MenuItem.cs,
  40. MenuItemStyleCollection.cs: Initial Menu code.
  41. 2004-12-02 Lluis Sanchez Gual <[email protected]>
  42. * TreeNodeBindingCollection.cs, TreeNodeStyleCollection.cs:
  43. Implemented SetDirtyObject.
  44. * Style.cs: Implemented SetDirty().
  45. * TreeNodeBinding.cs: Added missing attributes. Implemented SetDirty().
  46. * TreeNode.cs: Added missing attributes added support for
  47. PopulateOnDemand. Added some missing property bindings.
  48. * TreeNodeCollection.cs: Several minor fixes. SetDirty must be called
  49. to newly added elements to make sure al new data is saved.
  50. * TreeView.js: Implemented support for client population of nodes.
  51. * TreeNodeStyle.cs: Added missing attributes.
  52. * TreeView.cs: Implemented support for PopulateNodesFromClient and
  53. PopulateOnDemand. Improved rendering.
  54. 2004-11-29 Sanjay Gupta <[email protected]>
  55. * DataControlField.cs:
  56. * DataControlFieldCell.cs: Initial implementation.
  57. 2004-11-26 Lluis Sanchez Gual <[email protected]>
  58. * TreeNodeBindingCollection.cs: Implemented.
  59. * TreeNodeBinding.cs: Implemented.
  60. * TreeNode.cs: Added support for data binding.
  61. * TreeView_Default_Collapse.gif, TreeView_Default_Expand.gif
  62. TreeView_Default_NoExpand.gif: Moved to resources directory.
  63. * ListControl.cs: Fixed api.
  64. * XmlHierarchicalEnumerable.cs: Made internal.
  65. * DataBoundControl.cs: Modified api to match latest ms.net.
  66. * TreeView.js: New javascript file to support TreeView in the client.
  67. * XmlDataSource.cs: Added missing attributes.
  68. * HierarchicalDataBoundControl.cs: Mostly implemented.
  69. * BaseDataBoundControl.cs: Mostly implemented.
  70. * XmlHierarchyData.cs: Made internal.
  71. * TreeView.cs: Mostly implemented. The major missing feature is
  72. client side tree population.
  73. 2004-11-25 Sanjay Gupta <[email protected]>
  74. * BaseDataList.cs:
  75. * DataBountControl.cs:
  76. * Repeater.cs: Added SelectArguments property and updated.
  77. * SiteMapDataSourceView.cs:
  78. * SqlDataSourceView.cs:
  79. * XmlDataSourceView.cs: Removed extra method, which was there to
  80. keep things compiling.
  81. 2004-11-23 Lluis Sanchez Gual <[email protected]>
  82. * TreeNodeBindingCollection.cs, TreeNodeBinding.cs, TreeNode.cs,
  83. TreeNodeCollection.cs, TreeNodeStyleCollection.cs, TreeNodeStyle.cs,
  84. TreeView.cs: Initial implementation.
  85. * DataBoundControl.cs: Set the correct base class.
  86. * HierarchicalDataBoundControl.cs, BaseDataBoundControl.cs: Created stub.
  87. * TreeNodeSelectAction.cs: Formatting.
  88. * TreeView_Default_Collapse.gif, TreeView_Default_Expand.gif,
  89. TreeView_Default_NoExpand.gif: TreeView images.
  90. 2004-11-22 Sanjay Gupta <[email protected]>
  91. * SqlDataSourceView.cs: Updated methods and added one property.
  92. 2004-11-19 Sanjay Gupta <[email protected]>
  93. * AccessDataSource.cs:
  94. * SqlDataSourceView.cs: Implemented CreateDataSourceView () method.
  95. 2004-11-19 Sanjay Gupta <[email protected]>
  96. * SqlDataSource.cs: Updated call to constructor of SqlDataSourceView.cs.
  97. * SqlDataSourceView.cs: Updated constructor.
  98. 2004-11-19 Sanjay Gupta <[email protected]>
  99. * AccessDataSourceView.cs: Added new class.
  100. 2004-11-19 Sanjay Gupta <[email protected]>
  101. * SqlDataSourceView.cs: Corrected exception handling in
  102. ExecuteSelect method.
  103. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  104. * SiteMapHierarchicalDataSourceView.cs, SiteMapDataSource.cs: New files.
  105. * SiteMapDataSourceView.cs: Minor fix.
  106. 2004-11-18 Sanjay Gupta <[email protected]>
  107. * SqlDataSourceView.cs: Updated ExecuteSelect method.
  108. 2004-11-18 Sanjay Gupta <[email protected]>
  109. * SqlDataSource.cs: Corrected Select method.
  110. 2004-11-18 Sanjay Gupta <[email protected]>
  111. * SqlDataSource.cs: Updated Select method definition.
  112. * SqlDataSourceStatusEventArgs.cs: Updated class.
  113. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  114. * SqlDataSourceView.cs: Removed implementation of Events (it is inherited
  115. from DataSourceView.cs).
  116. 2004-11-10 Raja R Harinath <[email protected]>
  117. * SqlDataSourceView.cs (Select): Add 'override' to make it compile.
  118. 2004-11-05 Sanjay Gupta <[email protected]>
  119. * SqlDataSource.cs: Corrected method calls.
  120. * SqlDataSourceView.cs: Partial implementation of few methods.
  121. 2004-10-25 Gonzalo Paniagua Javier <[email protected]>
  122. * ListItemCollection.cs: fixed bug when indexing changed elements in
  123. LoadViewState. Patch from Alois Bělaška.
  124. 2004-10-20 Sanjay Gupta <[email protected]>
  125. * SiteMapDataSourceView.cs:
  126. * SqlDataSourceView.cs:
  127. * XmlDataSourceView.cs: Cosmetic changes because of modifications in
  128. base class, DataSourceView. Changes are to keep things compiling.
  129. 2004-10-19 Sanjay Gupta <[email protected]>
  130. * SiteMapDataSourceView.cs: Corrected class definition and updated.
  131. * XmlHierarchicalDataSourceView.cs: Modified according to changes in
  132. base class.
  133. 2004-10-14 Sanjay Gupta <[email protected]>
  134. * AdRotator.cs: Updated.
  135. 2004-10-12 Sanjay Gupta <[email protected]>
  136. * AccessDataSource.cs: Updated.
  137. 2004-10-08 Sanjay Gupta <[email protected]>
  138. * ValidatedControlConverter.cs: Updated.
  139. 2004-10-08 Sanjay Gupta <[email protected]>
  140. * AssociatedControlConverter.cs: Implemented.
  141. 2004-10-08 Sanjay Gupta <[email protected]>
  142. * ControlIDConverter.cs: Initial implementation.
  143. 2004-10-04 Sanjay Gupta <[email protected]>
  144. * IButtonControl.cs: Corrected property name.
  145. 2004-10-04 Sanjay Gupta <[email protected]>
  146. * ParameterCollection.cs: Updated.
  147. 2004-10-04 Sanjay Gupta <[email protected]>
  148. * Parameter.cs: Updated and completed implementation.
  149. 2004-10-01 Sanjay Gupta <[email protected]>
  150. * ParameterCollection.cs: Resolved warnings, "Unreachable code detected"
  151. while compilation.
  152. 2004-10-01 Sanjay Gupta <[email protected]>
  153. * AccessDataSource.cs: Initial implementation.
  154. 2004-09-30 Sanjay Gupta <[email protected]>
  155. * DataControlRowState.cs:
  156. * ScrollBars.cs:
  157. * TreeNodeTypes.cs: Added attribute.
  158. * DataControlRowType.cs:
  159. * HotSpotMode.cs:
  160. * SortDirection.cs: Corrected enumeration values.
  161. * TableRowSection.cs: Added new enumeration.
  162. * ObjectDataSourceStatusEventHandler.cs: Corrected method name.
  163. 2004-09-28 Gonzalo Paniagua Javier <[email protected]>
  164. * TableStyle.cs: don't render empty 'rules' attribute (again).
  165. 2004-09-21 Sanjay Gupta <[email protected]>
  166. * FormViewUpdatedEventArgs.cs: Spelling mistake.
  167. 2004-09-14 Sanjay Gupta <[email protected]>
  168. * Literal.cs: Added new method Focus().
  169. 2004-09-12 Gonzalo Paniagua Javier <[email protected]>
  170. * RadioButton.cs: fix GroupName when the control is inside a
  171. NamingContainer different from Page. Closes bug #65586.
  172. 2004-09-07 Sanjay Gupta <[email protected]>
  173. * Localize.cs: Added new class.
  174. 2004-09-03 Gaurav Vaish <gvaish_mono AT lycos.com>
  175. * CompositeControl.cs : Completed
  176. * Login.cs : Initial implementation.
  177. 2004-09-01 Gonzalo Paniagua Javier <[email protected]>
  178. * Xml.cs: fixed get_DocumentContent (it was returning "" always!) and
  179. don't call MapPathSecure on the content itself.
  180. * XmlBuilder.cs: handle XML documents written inside asp:xml. The
  181. document is checked at parse time and will be checked again at run time.
  182. Fixes bug #63828.
  183. 2004-08-31 Sanjay Gupta <[email protected]>
  184. * AuthenticateEventHandler.cs:
  185. * CreateUserErrorEventArgs.cs:
  186. * CreateUserErrorEventHandler.cs:
  187. * DetailsViewCommandEventHandler.cs:
  188. * DetailsViewDeleteEventArgs.cs:
  189. * DetailsViewDeleteEventHandler.cs:
  190. * DetailsViewDeletedEventArgs.cs:
  191. * DetailsViewDeletedEventHandler.cs:
  192. * DetailsViewInsertEventArgs.cs:
  193. * DetailsViewInsertEventHandler.cs:
  194. * DetailsViewInsertedEventArgs.cs:
  195. * DetailsViewInsertedEventHandler.cs:
  196. * DetailsViewModeEventArgs.cs:
  197. * DetailsViewModeEventHandler.cs:
  198. * DetailsViewPageEventHandler.cs:
  199. * DetailsViewUpdateEventArgs.cs:
  200. * DetailsViewUpdateEventHandler.cs:
  201. * DetailsViewUpdatedEventArgs.cs:
  202. * DetailsViewUpdatedEventHandler.cs:
  203. * FormViewCommandEventHandler.cs:
  204. * FormViewDeleteEventArgs.cs:
  205. * FormViewDeleteEventHandler.cs:
  206. * FormViewDeletedEventArgs.cs:
  207. * FormViewDeletedEventHandler.cs:
  208. * FormViewInsertEventArgs.cs:
  209. * FormViewInsertEventHandler.cs:
  210. * FormViewInsertedEventArgs.cs:
  211. * FormViewInsertedEventHandler.cs:
  212. * FormViewModeEventHandler.cs:
  213. * FormViewPageEventHandler.cs:
  214. * FormViewUpdateEventArgs.cs:
  215. * FormViewUpdateEventHandler.cs:
  216. * FormViewUpdatedEventArgs.cs:
  217. * FormViewUpdatedEventHandler.cs:
  218. * GridViewCancelEditEventArgs.cs:
  219. * GridViewCancelEditEventHandler.cs:
  220. * GridViewCommandEventHandler.cs:
  221. * GridViewDeleteEventArgs.cs:
  222. * GridViewDeleteEventHandler.cs:
  223. * GridViewDeletedEventArgs.cs:
  224. * GridViewDeletedEventHandler.cs:
  225. * GridViewEditEventHandler.cs:
  226. * GridViewPageEventHandler.cs:
  227. * GridViewRowEventHandler.cs:
  228. * GridViewSelectEventHandler.cs:
  229. * GridViewSortEventArgs.cs:
  230. * GridViewSortEventHandler.cs:
  231. * GridViewUpdateEventArgs.cs:
  232. * GridViewUpdateEventHandler.cs:
  233. * GridViewUpdatedEventArgs.cs:
  234. * GridViewUpdatedEventHandler.cs:
  235. * ImageMapEventHandler.cs:
  236. * MailMessageEventHandler.cs:
  237. * MenuEventHandler.cs:
  238. * ObjectDataSourceDisposingEventHandler.cs:
  239. * ObjectDataSourceEventHandler.cs:
  240. * ObjectDataSourceMethodEventArgs.cs:
  241. * ObjectDataSourceMethodEventHandler.cs:
  242. * ObjectDataSourceSelectingEventArgs.cs:
  243. * ObjectDataSourceSelectingEventHandler.cs:
  244. * ObjectDataSourceStatusEventArgs.cs:
  245. * ObjectDataSourceStatusEventHandler.cs:
  246. * SendMailErrorEventHandler.cs:
  247. * SiteMapNodeItemEventHandler.cs:
  248. * SqlDataSourceSelectingEventArgs.cs:
  249. * SqlDataSourceSelectingEventHandler.cs:
  250. * TreeNodeEventHandler.cs:
  251. * WizardNavigationEventArgs.cs:
  252. * WizardNavigationEventHandler.cs: Minor modifications, compiler error
  253. corrections and removing "sealed" access specifier from *EventHandler.cs
  254. 2004-08-18 Sanjay Gupta <[email protected]>
  255. * Literal.cs: Added new attributes and property for .Net 2.0
  256. 2004-08-13 Sanjay Gupta <[email protected]>
  257. * GridViewDeleteEventArgs.cs: Removed extra code.
  258. 2004-08-12 Sanjay Gupta <[email protected]>
  259. * SendMailErrorEventArgs.cs:
  260. * SendMailErrorEventHandler.cs:
  261. * SiteMapNodeItemEventArgs.cs:
  262. * SiteMapNodeItemEventHandler.cs:
  263. * SqlDataSourceSelectingEventArgs.cs:
  264. * SqlDataSourceSelectingEventHandler.cs:
  265. * TreeNodeEventArgs.cs:
  266. * TreeNodeEventHandler.cs:
  267. * WizardNavigationEventArgs.cs:
  268. * WizardNavigationEventHandler.cs: Added new delegates.
  269. 2004-08-11 Sanjay Gupta <[email protected]>
  270. * ImageMapEventArgs.cs:
  271. * ImageMapEventHandler.cs:
  272. * MailMessageEventArgs.cs:
  273. * MailMessageEventHandler.cs:
  274. * MenuEventArgs.cs:
  275. * MenuEventHandler.cs:
  276. * ObjectDataSourceDisposingEventArgs.cs:
  277. * ObjectDataSourceDisposingEventHandler.cs:
  278. * ObjectDataSourceEventArgs.cs:
  279. * ObjectDataSourceEventHandler.cs:
  280. * ObjectDataSourceMethodEventArgs.cs:
  281. * ObjectDataSourceMethodEventHandler.cs:
  282. * ObjectDataSourceSelectingEventArgs.cs:
  283. * ObjectDataSourceSelectingEventHandler.cs:
  284. * ObjectDataSourceStatusEventArgs.cs:
  285. * ObjectDataSourceStatusEventHandler.cs: Added new delegates.
  286. 2004-08-11 Sanjay Gupta <[email protected]>
  287. * DetailsViewCommandEventArgs.cs:
  288. * FormViewCommandEventArgs.cs:
  289. * GridViewCommandEventArgs.cs: Corrected constructor.
  290. 2004-08-11 Sanjay Gupta <[email protected]>
  291. * GridViewCancelEditEventArgs.cs:
  292. * GridViewCancelEditEventHandler.cs:
  293. * GridViewCommandEventArgs.cs:
  294. * GridViewCommandEventHandler.cs:
  295. * GridViewDeletedEventArgs.cs:
  296. * GridViewDeletedEventHandler.cs:
  297. * GridViewDeleteEventArgs.cs:
  298. * GridViewDeleteEventHandler.cs:
  299. * GridViewEditEventArgs.cs:
  300. * GridViewEditEventHandler.cs:
  301. * GridViewPageEventArgs.cs:
  302. * GridViewPageEventHandler.cs:
  303. * GridViewRowEventArgs.cs:
  304. * GridViewRowEventHandler.cs:
  305. * GridViewSelectEventArgs.cs:
  306. * GridViewSelectEventHandler.cs:
  307. * GridViewSortEventArgs.cs:
  308. * GridViewSortEventHandler.cs:
  309. * GridViewUpdatedEventArgs.cs:
  310. * GridViewUpdatedEventHandler.cs:
  311. * GridViewUpdateEventArgs.cs:
  312. * GridViewUpdateEventHandler.cs: Added new delegates.
  313. 2004-08-11 Sanjay Gupta <[email protected]>
  314. * FormViewUpdatedEventArgs.cs: Corrected constructor.
  315. 2004-08-11 Sanjay Gupta <[email protected]>
  316. * FormViewCommandEventArgs.cs: Corrected name of class.
  317. 2004-08-10 Gonzalo Paniagua Javier <[email protected]>
  318. * Xml.cs: use MapPath in DocumentSource and documentContent. Fixes
  319. bug #62726.
  320. 2004-08-10 Sanjay Gupta <[email protected]>
  321. * FormViewCommandEventArgs.cs:
  322. * FormViewCommandEventHandler.cs:
  323. * FormViewDeletedEventArgs.cs:
  324. * FormViewDeletedEventHandler.cs:
  325. * FormViewDeleteEventArgs.cs:
  326. * FormViewDeleteEventHandler.cs:
  327. * FormViewInsertedEventArgs.cs:
  328. * FormViewInsertedEventHandler.cs:
  329. * FormViewInsertEventArgs.cs:
  330. * FormViewInsertEventHandler.cs:
  331. * FormViewModeEventArgs.cs:
  332. * FormViewModeEventHandler.cs:
  333. * FormViewPageEventArgs.cs:
  334. * FormViewPageEventHandler.cs:
  335. * FormViewUpdatedEventArgs.cs:
  336. * FormViewUpdatedEventHandler.cs:
  337. * FormViewUpdateEventArgs.cs:
  338. * FormViewUpdateEventHandler.cs: Added new delegates.
  339. 2004-08-10 Sanjay Gupta <[email protected]>
  340. * DetailsViewCommandEventArgs.cs:
  341. * DetailsViewCommandEventHandler.cs:
  342. * DetailsViewDeletedEventArgs.cs:
  343. * DetailsViewDeletedEventHandler.cs:
  344. * DetailsViewDeleteEventArgs.cs:
  345. * DetailsViewDeleteEventHandler.cs:
  346. * DetailsViewInsertedEventArgs.cs:
  347. * DetailsViewInsertedEventHandler.cs:
  348. * DetailsViewInsertEventArgs.cs:
  349. * DetailsViewInsertEventHandler.cs:
  350. * DetailsViewModeEventArgs.cs:
  351. * DetailsViewModeEventHandler.cs:
  352. * DetailsViewPageEventArgs.cs:
  353. * DetailsViewPageEventHandler.cs:
  354. * DetailsViewUpdatedEventArgs.cs:
  355. * DetailsViewUpdatedEventHandler.cs:
  356. * DetailsViewUpdateEventArgs.cs:
  357. * DetailsViewUpdateEventHandler.cs: Added new delegates.
  358. 2004-08-09 Sanjay Gupta <[email protected]>
  359. * AuthenticateEventArgs.cs:
  360. * AuthenticateEventHandler.cs:
  361. * CreateUserErrorEventArgs.cs:
  362. * CreateUserErrorEventHandler.cs: Added new delegates.
  363. 2004-08-05 Sanjay Gupta <[email protected]>
  364. * IButtonControl.cs:
  365. * ICallbackContainer.cs:
  366. * ICompositeControlDesignerAccessor.cs:
  367. * IPostBackContainer.cs: Added new interfaces.
  368. 2004-08-03 Sanjay Gupta <[email protected]>
  369. * AdType.cs:
  370. * AutoCompleteType.cs:
  371. * ContentDirection.cs:
  372. * DataControlCellType.cs:
  373. * DataControlRowState.cs:
  374. * DataControlRowType.cs:
  375. * DetailsViewMode.cs:
  376. * DynamicImageParameterMode.cs:
  377. * FormViewMode.cs:
  378. * HotSpotMode.cs:
  379. * ImageFieldMode.cs:
  380. * LiteralMode.cs:
  381. * LogoutAction.cs:
  382. * Orientation.cs:
  383. * PagerButtons.cs:
  384. * PathDirection.cs:
  385. * ScrollBars.cs:
  386. * SiteMapNodeItemType.cs:
  387. * SiteMapNodeType.cs:
  388. * SiteMapViewType.cs:
  389. * SortDirection.cs:
  390. * TableCaptionAlign.cs:
  391. * TableHeaderScope.cs:
  392. * TableViewMode.cs:
  393. * TreeNodeSelectAction.cs:
  394. * TreeNodeTypes.cs:
  395. * TreeViewImageSet.cs:
  396. * WizardStepType.cs: Added enumerations
  397. 2004-08-02 Duncan Mak <[email protected]>
  398. * ButtonType.cs:
  399. * LoginFailureAction.cs:
  400. * LoginTextLayout.cs: Added enumerations.
  401. 2004-07-29 Gonzalo Paniagua Javier <[email protected]>
  402. * BaseValidator.cs: in Validate(), when the control is not visible or
  403. enabled, return inmediately after setting IsValid to true. Fixes bug
  404. #61831.
  405. 2004-07-27 Gonzalo Paniagua Javier <[email protected]>
  406. * DataList.cs: s/HasChildren/HasControls()/.
  407. 2004-07-27 Gonzalo Paniagua Javier <[email protected]>
  408. * DataList.cs: style.
  409. 2004-07-27 Alon Gazit <[email protected]>
  410. * DataList.cs: Replaced foreach statement with for statement,
  411. in order to improve performence.
  412. 2004-07-27 Alon Gazit <[email protected]>
  413. * WebControl.cs: changed RenderBeginTag()to use TagKey instead of
  414. TagName.
  415. * Unit.cs : changed GetTypeFromString() and GetStringFromPixel() to use
  416. switch statements in order to improve performance.
  417. 2004-06-10 Alon Gazit <[email protected]>
  418. * WebControl.cs: fixed LoadViewState().
  419. Creates new attributes state bag only when the current is null.
  420. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  421. * Calendar.cs: implemented OnPreRender and HasWeekSelectors.
  422. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  423. * Calendar.cs: set the title class attribute if we have it. Fixes bug
  424. 53671.
  425. 2004-06-04 Gonzalo Paniagua Javier <[email protected]>
  426. * Style.cs: added SetBit.
  427. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  428. * Calendar.cs:
  429. * CompareValidator.cs:
  430. * ImageButton.cs:
  431. * Style.cs:
  432. * WebControl.cs: Added protected missing members and attributes.
  433. 2004-05-18 Gonzalo Paniagua Javier <[email protected]>
  434. * TextBox.cs: don't save the Text if in ViewState if it's a password.
  435. Save it if the control is not visible or not enabled. Fixes bug #58497.
  436. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  437. * Calendar.cs: fire OnDayRender after assigning the calendar cell text.
  438. Fixes bug #58097.
  439. 2004-05-09 Gert Driesen ([email protected])
  440. * Parameter.cs:
  441. * SqlDataSourceCommandEventArgs:
  442. * XmlDataSource.cs : removed temporary workarounds for CLS
  443. compliance as System.Data is now CLS compliant
  444. 2004-05-06 Alon Gazit <[email protected]>
  445. * WebControl.cs: fixed LoadViewState() and SaveViewState().
  446. Before the change the Enabled property wasn't updated when a postback
  447. event was raised.
  448. * ListControl.cs: fixed SelectedIndex property implementation.
  449. Prevents throwing ArgumentOutOfRangeException (that should not be
  450. thrown), when the list is empty.
  451. 2004-04-28 Alon Gazit <[email protected]>
  452. * WebControl.cs: fixed LoadViewState().
  453. Always loading the saved attributes collection.
  454. 2004-04-18 Alon Gazit <[email protected]>
  455. * Repeater.cs: fixed InstantiateItem() and DataSource property.
  456. The change in DataSource prevents throwing ArgumentException while
  457. setting property value to null.
  458. The change in InstantiateItem() prevents NullReferenceException.
  459. 2004-04-07 Lluis Sanchez Gual <[email protected]>
  460. * BaseValidator.cs: Store Display property in the correct ViewState
  461. property. Don't render anything if Display is ValidatorDisplay.None.
  462. 2004-03-30 Lluis Sanchez Gual <[email protected]>
  463. * Xml.cs: In LoadXpathDoc(), don't use MapPathSecure with documentSource,
  464. since it is already a physical path. Fixes bug #55334.
  465. 2004-02-13 Jackson Harper <[email protected]>
  466. * Calendar.cs: Match MS postback data. This allows sites that
  467. parse the postback data manually to work.
  468. 2004-02-04 Alon Gazit <[email protected]>
  469. * EditCommandColumn.cs: fixed InitializeCell().
  470. The rendered LiteralControl should contain "&nbsp;" and not " ".
  471. 2004-02-01 Alon Gazit <[email protected]>
  472. * DataGrid.cs: fixed a problem in the paging mechanism in the method
  473. InitializePager().
  474. the problem was when (PagerStyle.Mode == PagerMode.NumericPages),
  475. while clicking the "..." link in the second page.
  476. 2004-01-28 Alon Gazit <[email protected]>
  477. * Calendar.cs: prevent NullReferenceException in RenderAllDays().
  478. 2004-01-27 Gonzalo Paniagua Javier <[email protected]>
  479. * Calendar.cs: when rendering days, add a LiteralControl containing the
  480. day before OnDayRender is called. Only generate the default links for
  481. days when IsSelectable is true after OnDayRender. Fixes bug #53372.
  482. 2004-01-21 Martin Baulig <[email protected]>
  483. * XmlHierarchyData.cs: Make this compile with csc.
  484. * BulletedList.cs (BulletedList.SelectedItem): Removed the `set'
  485. accessor since the base class doesn't have one.
  486. 2004-01-18 Alon Gazit <[email protected]>
  487. * CheckBoxList.cs: fix problem with negative TabIndex (wasn't rendered).
  488. 2004-01-18 Alon Gazit <[email protected]>
  489. * Style.cs: CopyFrom method shouldn't copy a value that is equal to
  490. Property default value.
  491. * FontInfo.cs : CopyFrom method shouldn't copy a value that is equal to
  492. Property default value.
  493. 2004-01-15 Alon Gazit <[email protected]>
  494. * RadioButtonList.cs: RepeatLayout property should affect the rendered
  495. html.
  496. 2004-01-15 Alon Gazit <[email protected]>
  497. * FontInfo.cs: Add validation check to Size property.
  498. 2004-01-07 Alon Gazit <[email protected]>
  499. * DataGrid.cs: Fixed PrepareControlHierarchyForItem().
  500. merge the column's style to the cell's style and not to
  501. the item's(row) style.
  502. 2004-01-04 Alon Gazit <[email protected]>
  503. * RangeValidator.cs: Fixed ControlPropertiesValid().
  504. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  505. * Xml.cs: mono-stylized and removed warnings.
  506. 2004-1-1 Alon Gazit <[email protected]>
  507. * RadioButtonList.cs: update RenderItem() so that each RadioButton
  508. is enabled or disabled like the RadioButtonList.
  509. * CheckBoxList.cs: update RenderItem() so that each CheckBox
  510. is enabled or disabled like the CheckBoxList.
  511. 2004-1-1 Alon Gazit <[email protected]>
  512. * DataGrid.cs: Fixed PrepareControlHierarchyForItem().
  513. The Header or Footer Style shouldn't merge with the cells Style.
  514. 2004-1-1 Alon Gazit <[email protected]>
  515. * DataGridColumn.cs: Headers and Footers are initialized
  516. with the relevant Style object.
  517. 2003-12-30 Alon Gazit <[email protected]>
  518. * RepeatInfo.cs: Fixed DoVerticalRendering () and
  519. DoHorizontalRendering().
  520. Current implementation produces few extra html tags.
  521. 2003-12-29 Alon Gazit <[email protected]>
  522. * CheckBox.cs: change the implementation of LoadPostData.
  523. Currently, while the AutoPostBack property equals true ,
  524. it isn't possible to perform uncheck.
  525. 2003-12-19 Jackson Harper <[email protected]>
  526. * TableCell.cs: Setting a cells text should clear its control
  527. collection as per la specification. This fixes bug #51825.
  528. 2003-12-18 Gonzalo Paniagua Javier <[email protected]>
  529. * DataGridColumn.cs: stylized LoadViewState.
  530. * DataGridColumnCollection.cs: when TrackViewState is called, also
  531. call it on all the existing columns. Fixes bug #52334.
  532. 2003-12-18 Alon Gazit <[email protected]>
  533. * DataGridPagerStyle.cs: merge DataGridPagerStyle properties when Style
  534. is empty.
  535. 2003-12-18 Alon Gazit <[email protected]>
  536. * TableStyle.cs: merge TableStyle properties when Style is empty.
  537. 2003-12-16 Alon Gazit <[email protected]>
  538. * HyperLink.cs: Change Text property implementation. in MS when the Text
  539. property is set, all the controls in the HyperLink are being deleted.
  540. This fixes bug #52239.
  541. 2003-12-15 Alon Gazit <[email protected]>
  542. * RepeatInfo.cs: Fixed DoVerticalRendering () and
  543. DoHorizontalRendering().
  544. Both methods add additional empty table row in the head of each item
  545. table when the variable named isTable equals true (happenes with the
  546. default instantiation of RepeatInfo). These additional rows should be
  547. added when isTable equals false.
  548. This fixes bug #52225.
  549. 2003-12-15 Alon Gazit <[email protected]>
  550. * RepeatInfo.cs: Fixed DoVerticalRendering() and
  551. DoHorizontalRendering().
  552. Both methods add to rendered Header a colspan attribute according to the
  553. rows count. after the change the colspan is added according to the
  554. columns count.
  555. 2003-12-15 Alon Gazit <[email protected]>
  556. * CheckBox.cs: Disabled CheckBox does not produce same HTML as .NET.
  557. In .NET if the checkbox is disabled ,its text appears disabled too.
  558. In Mono the text appears enabled. the fix is in Render().
  559. This fixes bug #52180.
  560. 2003-12-15 Alon Gazit <[email protected]>
  561. * Repeater.cs: Change the implementation of CreateControlHierarchy().
  562. The current implementation renders extra Header and footer
  563. without Repeater.DataSource assign.
  564. This fixes bug #52179.
  565. 2003-12-15 Alon Gazit <[email protected]>
  566. * DataGrid.cs: Change the implementation of the property
  567. BackImageUrl. The current implementation has no influence
  568. on the rendered Html.
  569. 2003-12-15 Alon Gazit <[email protected]>
  570. * WebControl.cs: Change the implementation of the property
  571. Enabled. Before the change the WebControl also looked at
  572. parent.Enabled . fixed bug #52171.
  573. 2003-12-11 Jackson Harper <[email protected]>
  574. * RepeatInfo.cs: When rendering vertically figure out how many
  575. colmns are not going to be filled in in the last row, and adjust
  576. things accordingly. This fixes bug #51863.
  577. 2003-12-10 Alon Gazit <[email protected]>
  578. * TableRow.cs: Change the implementation of the properties
  579. HorizontalAlign and VerticalAlign. The current implementation
  580. has no influence on the rendered Html.
  581. 2003-12-10 Alon Gazit <[email protected]>
  582. * TableItemStyle.cs: Add setting of The WRAP flag in the Wrap
  583. property's set method.
  584. 2003-12-09 Jackson Harper <[email protected]>
  585. * PagedDataSource.cs (PrivateICollectionEnumerator.MoveNext):
  586. Increment counter when moving to start. Fixes bug #51926.
  587. 2003-12-08 Jackson Harper <[email protected]>
  588. * HyperLinkColumn.cs: Fix navigate url rendering. Patch by
  589. Benjamin Jemlich. Fixes bug #51823.
  590. 2003-12-07 Alon Gazit <[email protected]>
  591. * Panel.cs: Panel doesn't render nowrap attribute while the Wrap
  592. property is set to false. Fixes bug #58120.
  593. 2003-12-04 Gonzalo Paniagua Javier <[email protected]>
  594. * TableItemStyle.cs: merge TableItemStyle properties when Style is
  595. empty. Fixes bug #51689. Patch by Alon Gazit <[email protected]>.
  596. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  597. * RadioButtonList.cs: render tabindex attribute if needed. Fixes bug
  598. #51648.
  599. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  600. * WebControl.cs: don't create the attributes when GetAttribute is
  601. called.
  602. 2003-12-01 Jackson Harper <[email protected]>
  603. * WebControl.cs: Only allow access keys to be null or a single
  604. char. Patch by Alon Gazit <[email protected]>.
  605. 2003-11-30 Jackson Harper <[email protected]>
  606. * CheckBoxList.cs: A checkbox will have null post data if it is
  607. unselected. This fixes bug #51516.
  608. 2003-11-29 Jackson Harper <[email protected]>
  609. * DataGrid.cs: Display paging controls even when there is no
  610. data. Path by Mohammad DAMT. Fixes bug #51487.
  611. 2003-11-29 Jackson Harper <[email protected]>
  612. * DataGrid.cs: Call TrackViewState when loading bound columns view
  613. state. So that their state is saved. This fixes bug #51424. Also
  614. set ReadOnly.
  615. 2003-11-26 Jackson Harper <[email protected]>
  616. * BaseDataList.cs: Change && to || We will call that a typo so no
  617. one gets embarrased.
  618. 2003-11-24 Gonzalo Paniagua Javier <[email protected]>
  619. * BaseDataList.cs: allow setting null as Datasource.
  620. * DataGrid.cs: keep autogenerated columns in the ViewState.
  621. Patches by Alon Gazit <[email protected]>.
  622. 2003-11-22 Ben Maurer <[email protected]>
  623. * SqlDataSource*: Implement almost everything. Data access is
  624. still missing.
  625. 2003-11-22 Ben Maurer <[email protected]>
  626. * Calendar.cs (SaveViewState):
  627. - We were allocating a 11 item array, we only used 10 items,
  628. so only allocate 10.
  629. - We only need to save the selected dates if there are any.
  630. * DataGrid.cs (SaveViewState):
  631. * DataGridColumn.cs (SaveViewState):
  632. * DataGridColumnCollection.cs (SaveViewState):
  633. - Only return the array if there is anything in it
  634. * Style.cs (SaveViewState):
  635. - Only save the bits if there were changes.
  636. * WebControl.cs (SaveViewState), (LoadViewState):
  637. - Don't save Enabled into the viewstate here, we already
  638. do it in the property. This just caused *EVERY* control
  639. to have a non-null state, taking up lots of extra room
  640. in the ViewState.
  641. - The style will always be created with this control's
  642. viewstate, so the style will always return null for the
  643. viewstate. As such, we do not need to store it. We can
  644. also reduce the triplet to a pair because of this.
  645. 2003-11-22 Jackson Harper <[email protected]>
  646. * ValidationSummary.cs: Fix number of messages and message array computation.
  647. 2003-11-21 Andreas Nahr <[email protected]>
  648. * Xml.cs: Corrected attribute
  649. * XmlBuilder.cs: Added
  650. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  651. * Xml.cs: class status based fixes.
  652. 2003-11-19 Jackson Harper <[email protected]>
  653. * HyperLink.cs: Use ResolveUrl instead of ResolveBaseUrl.
  654. 2003-11-19 Jackson Harper <[email protected]>
  655. * HyperLink.cs: Use ResolveBaseUrl so that ~/ is interpreted as
  656. teh applications base directory. This fixes bug #51092.
  657. 2003-11-18 Todd Berman <[email protected]>
  658. * ControlParameter.cs:
  659. * CookieParameter.cs:
  660. * FormParameter.cs:
  661. * QueryStringParameter.cs:
  662. * SessionParameter.cs: added public .ctor ()
  663. * Parameter.cs: added public .ctor (), internal SetOwnerCollection
  664. and handling, as well as internal ParameterValue for easy access.
  665. NOTE: ParameterValue doesnt respect TreatEmptyStringAsNull yet.
  666. * ParameterCollection.cs: implementation redux.
  667. 2003-11-18 Todd Berman <[email protected]>
  668. * ParameterCollection.cs: Implemented
  669. * Parameter.cs: Added _owner, SetOwnerCollection and proper handling.
  670. ToString () now matches asp.net
  671. 2003-11-17 Ben Maurer <[email protected]>
  672. * ControlParameter.cs:
  673. * CookieParameter.cs:
  674. * FormParameter.cs:
  675. * Parameter.cs:
  676. * QueryStringParameter.cs: New v2 files. Mostly
  677. implemented, still need a few methods.
  678. 2003-11-16 Gonzalo Paniagua Javier <[email protected]>
  679. * ListItem.cs: prevent nullrefs ni Get/SetAttribute. Thanks to Alon
  680. Gazit <[email protected]>.
  681. 2003-11-13 Gonzalo Paniagua Javier <[email protected]>
  682. * RadioButton.cs: fixed RenderInputTag for negative TabIndex values.
  683. Patch by Alon Gazit <[email protected]>.
  684. 2003-11-09 Ben Maurer <[email protected]>
  685. * DataBoundControl.cs: Implement
  686. * ListControl.cs: inherit from the above.
  687. * Repeater.cs, BaseDataList.cs: should reset whenever we databind.
  688. 2003-11-09 Ben Maurer <[email protected]>
  689. * BaseDataList.cs:
  690. * DataGrid.cs:
  691. * DataList.cs:
  692. * Repeater.cs: add v2 databinding stuff
  693. * XmlDataSource.cs: make it load the xml.
  694. 2003-11-09 Ben Maurer <[email protected]>
  695. * XmlDataSource.cs:
  696. * XmlDataSourceView.cs:
  697. * XmlHierarchicalDataSourceView.cs:
  698. * XmlHierarchicalEnumerable.cs:
  699. * XmlHierarchyData.cs: Implement
  700. 2003-11-08 Ben Maurer <[email protected]>
  701. * SiteMapDataSourceView.cs: Implement.
  702. 2003-11-07 Jackson Harper <[email protected]>
  703. * ImageButton.cs: This is a workaround for bug #49819. It appears
  704. that the .x and .y values are not being posted, and only the x
  705. value is being posted with the ctrl's id as the key.
  706. 2003-11-07 Jackson Harper <[email protected]>
  707. * DataGrid.cs (CreateControlHierarchy): Current page index is
  708. alolowed to equal page count. This prevents an exception being
  709. thrown when both are zero.
  710. 2003-11-06 Jackson Harper <[email protected]>
  711. * ValidationSummary.cs: Add Render method. Patch by Yaron Shkop.
  712. * BaseValidator.cs: Disable base control so the isValid flag is
  713. not reset.
  714. 2003-11-03 Jackson Harper <[email protected]>
  715. * TemplateColumn.cs: Use the same renderer for selected items as
  716. normal items. This fixes bug #49744.
  717. 2003-11-03 Jackson Harper <[email protected]>
  718. * DataList.cs:
  719. * WebControl.cs: Fix argument out of range exceptions on
  720. properties. Patch by Yaron Shkop.
  721. 2003-11-03 Jackson Harper <[email protected]>
  722. * TemplateColumn.cs: If the item is selected but there is no
  723. editItemTemplate use the itemTemplate. This matches MS behvoir.
  724. 2003-11-03 Jackson Harper <[email protected]>
  725. * Repeater.cs: Always set alternating items to the AlternatingItem
  726. type, when instantiating alternating items use the itemTemplate if
  727. the alternatingItem template is null. This matches MS behavoir and
  728. fixes bug #50157.
  729. 2003-11-03 Jackson Harper <[email protected]>
  730. * DataGridPagerStyle.cs: Name of view state attribute is
  731. PagerVisible not Visible. Call owner.OnPagerChanged when the pager
  732. visibility is changed. Patch by Yaron Shkop.
  733. 2003-11-03 Jackson Harper <[email protected]>
  734. * RepeatInfo.cs: When doing horizontal rendering use the repeat
  735. columns as the number of columns in a row. This fixes bug #49016.
  736. 2003-11-03 Jackson Harper <[email protected]>
  737. * PagedDataSource.cs (PageCount): Return page count of 1 if there
  738. paging is disabled. Patch by Yaron Shkop.
  739. * PagedDataSource.cs (CopyTo): Improve. Patch by Yaron Shkop.
  740. * TableStyle.cs (AddAttributesToRender): Render border style
  741. collapse. Patch by Yaron Shkop.
  742. * TableStyle.cs:
  743. * TableItemStyle.cs:
  744. * DataGridPagerStyle.cs: Call base copy and merge even if style is of
  745. the wrong type. Patch by Yaron Shkop.
  746. 2003-11-03 Jackson Harper <[email protected]>
  747. * BoundColumn.cs: Render readonly columns. Patch by Mohammad DAMT.
  748. 2003-11-02 Ben Maurer <[email protected]>
  749. * BulletStyle.cs:
  750. * BulletedListDisplayMode.cs:
  751. * BulletedListEventHandler.cs:
  752. * BulletedList.cs:
  753. * BulletedListEventArgs.cs: V2 controls (yay!)
  754. 2003-10-30 Jackson Harper <[email protected]>
  755. * Repeater.cs: Throw an exception if the datasource is set to
  756. something that does not implement either IListSource or
  757. IEnumerable. This fixes bug #50155.
  758. 2003-10-30 Jackson Harper <[email protected]>
  759. * DataGridPagerStyle.cs: Do not allow page button counts to be set
  760. to less then 1. Patch by Yaron Shkop. This fixes bug #50236.
  761. 2003-10-29 Jackson Harper <[email protected]>
  762. * ButtonColumn.cs: Format string and text to format were
  763. inversed. This fixes bug #50171.
  764. 2003-10-29 Jackson Harper <[email protected]>
  765. * DataGridColumn.cs: If an item style is set apply it to the
  766. cell. This fixes bug #50173.
  767. 2003-10-29 Ben Maurer <[email protected]>
  768. * HyperLinkColumn.cs: Patch by Yaron Shkop. Fixes #50234. Remove
  769. old debugging value.
  770. 2003-10-29 Jackson Harper <[email protected]>
  771. * PagedDataSource.cs:
  772. * DataGrid.cs: Patch by Mohammad DAMT. Do not go past the
  773. end of the last page. Fixes bug #5085.
  774. 2003-10-29 Jackson Harper <[email protected]>
  775. * CheckBox.cs: Do not change the status of a checkbox when there
  776. is no post data. This fixes bug #49091.
  777. * CheckBoxList.cs: Do not change the status of the checkboxes when
  778. there is no post data. This fixes bug #49093.
  779. 2003-10-26 Ben Maurer <[email protected]>
  780. * RadioButton.cs: Patch by Yaron Shkop. Enables disabling a
  781. RadioButton. Fixes #50132
  782. 2003-10-25 Ben Maurer <[email protected]>
  783. * PagedDataSource.cs: Patch by Ivo Haamer. Typo prevented
  784. paging from working. Fixes #48814.
  785. 2003-10-25 Ben Maurer <[email protected]>
  786. * DataGrid.cs: A few typos kept us from viewing datagrids
  787. that were based on customized collections.
  788. 2003-10-24 Ben Maurer <[email protected]>
  789. * DataGridCommandEventArgs.cs: typo, cmdSrc was becoming origionalArgs.
  790. 2003-10-23 Ben Maurer <[email protected]>
  791. * Calendar.cs: render the next month button so that aligns to the
  792. right.
  793. 2003-10-23 Gonzalo Paniagua Javier <[email protected]>
  794. * BaseCompareValidator.cs: splitted Convert. Fixed bug #49927. The fix
  795. was just changing && by || after the first Match.
  796. 2003-10-23 Gonzalo Paniagua Javier <[email protected]>
  797. * Calendar.cs: apply header style in RenderHeader. Fixes bug #49144.
  798. Patch by Yaron Shkop.
  799. 2003-10-22 Gonzalo Paniagua Javier <[email protected]>
  800. * DataGrid.cs: applied patch from Yaron Shkop ([email protected])
  801. that fixes bug #49744. Now the selection doesn't lose its data.
  802. 2003-10-21 Ben Maurer <[email protected]>
  803. * EditCommandColumn.cs: Implement; fix #49736
  804. 2003-10-21 Ben Maurer <[email protected]>
  805. * ButtonColumn.cs: Use the DataGridLinkButton, so that we inherit
  806. the forground color. bug #49738
  807. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  808. * Calendar.cs: fixed bug #49727.
  809. 2003-10-18 Ben Maurer <[email protected]>
  810. * TableStyle.cs: fix #49740.
  811. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  812. * SelectedDatesCollection.cs: fix by Yaron for bug #49698.
  813. * ValidationSummary.cs: fixes bug #49669.
  814. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  815. * Calendar.cs: apply the calendar style to the new Table, not to itself.
  816. Fixes #49406.
  817. * CheckBox.cs: render the hidden fields if AutoPostBack.
  818. * Style.cs: don't render empty width/height. Small improvement in
  819. CopyFrom.
  820. * Table.cs: fixed condition for border width.
  821. * TableStyle.cs:
  822. (CopyFrom): always call the base class to copy other attributes. Fixes
  823. bug #49408. Don't render empty 'rules' attribute.
  824. * WebControl.cs: track viewstate when enabled. Don't overwrite source
  825. control attributes in CopyBaseAttributes.
  826. * ChangeLog: fixed dates.
  827. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  828. * WebControl.cs : Attributes { get; } - Is Complete.
  829. * ValidationSummary.cs : AddAttributesToRender(HtmlTextWriter)
  830. - Completed.
  831. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  832. * BaseValidator.cs : DetermineRenderUplevel() - Completed.
  833. : RegisterValidatorCommonScript()
  834. - More code, I need HELP!
  835. : RegisterValidatorDeclaration()
  836. - More code, I need HELP!
  837. 2003-09-29 Gonzalo Paniagua Javier <[email protected]>
  838. * CheckBoxList.cs: don't lose state when enabling/disabling. See bug
  839. #48802.
  840. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  841. * Repeater.cs: fixed bug #48807. It needed to use a DummyDataSource and
  842. ClearViewState only called when no items.
  843. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  844. * RadioButtonList.cs: fix for bug #48874 by Yaron Shkop.
  845. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  846. * RadioButtonList.cs: fix for bug #48870 by Yaron Shkop.
  847. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  848. * DataList.cs: fixed bug #48217. Patch by [email protected] (Yaron
  849. Shkop).
  850. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  851. * AdRotator.cs: fixes bug #48691. Patch by [email protected] (Yaron
  852. Shkop).
  853. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  854. * CheckBox.cs: render the 'disabled' attribute in the correct tag.
  855. * WebControl.cs: fixed Enabled property and save it in ViewState.
  856. Fixes bug #48802.
  857. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  858. * ListControl.cs: fixed bug #48668. Thanks to Yaron Shkop.
  859. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  860. * ListBox.cs: patch by [email protected] (Yaron Shkop) that fixes
  861. bug #48671.
  862. 2003-09-19 Gonzalo Paniagua Javier <[email protected]>
  863. * FontInfo.cs: fixed Name property as suggested by Rich Alimi
  864. <[email protected]>.
  865. 2003-09-14 Gonzalo Paniagua Javier <[email protected]>
  866. * RegularExpressionValidator.cs: fix for EvaluateIsValid by Juraj
  867. Skripsky <[email protected]>
  868. 2003-09-13 Gonzalo Paniagua Javier <[email protected]>
  869. * BaseValidator.cs: patch by Juraj Skripsky ([email protected]) that
  870. fixes rendering of the end tag.
  871. 2003-08-31 Gonzalo Paniagua Javier <[email protected]>
  872. * Repeater.cs: fix for Items property provided by [email protected]
  873. (Yaron Shkop). Closes bug #48060.
  874. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  875. * CheckBox.cs: in LoadPostData, only return
  876. true when the new data is different from the one we had. Fixed
  877. conditions to save Checked state. Thanks to [email protected]
  878. (Yaron Shkop).
  879. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  880. * Style.cs: Font.Strikeout renders as 'line-through'. Fixes bug #47871.
  881. 2003-08-25 Gonzalo Paniagua Javier <[email protected]>
  882. * WebControl.cs: removed dangling ^M and unneeded fields. Keep track
  883. of Enable in ViewState. Fixes bug #47865.
  884. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  885. * Style.cs: the MARKED bit is not send set in ViewState unless something
  886. is changed. Fixed TrackViewState condition.
  887. * WebControl.cs: save the base ViewState *after* ControlStyle is done,
  888. because it uses the same ViewState as the control. Fixes bug #47725.
  889. 2003-08-16 Gonzalo Paniagua Javier <[email protected]>
  890. * HyperLinkColumn.cs: patch from David Pickens <[email protected]>
  891. that fixes databinding when only DataTextField or DataNavigateUrlField
  892. is set.
  893. 2003-08-14 Gonzalo Paniagua Javier <[email protected]>
  894. * ListControl.cs: patch sent by Yaacov Akiba Slama <[email protected]> on
  895. behalf of Yaron Shkop <[email protected]> that fixes selection of
  896. values before assigning a data source and other issues.
  897. 2003-08-11 Gonzalo Paniagua Javier <[email protected]>
  898. * CheckBox.cs: save viewstate when needed and correctly handle post
  899. data. Fixes bug #47462.
  900. 2003-08-01 Andreas Nahr <[email protected]>
  901. * ButtonColumn.cs: Removed additional attributes
  902. * CheckBox.cs: Added attribute
  903. * DataGrid.cs: Added attributes
  904. * HyperLinkColumn.cs: Changed attributes, added lamespec
  905. * Style.cs: Removed attributes
  906. * TextBox.cs: Added/ removed attributes
  907. 2003-08-01 Andreas Nahr <[email protected]>
  908. * AdRotator.cs: Added all attributes
  909. * BaseDataList.cs: Added all attributes, added lamespec, removed additional attributes
  910. * BaseValidator.cs: Added all attributes
  911. * BoundColumn.cs: Added all attributes
  912. * Button.cs: Added all attributes
  913. * ButtonColumn.cs: Added all attributes, added lamespec
  914. * Calendar.cs: Added all attributes, added error checks, throws more exceptions
  915. * CheckBox.cs: Added all attributes
  916. * CheckBoxList.cs: Added all attributes
  917. * CompareValidator.cs: Added all attributes
  918. * CustomValidator.cs: Added all attributes
  919. * DataGrid.cs: Added all attributes, more verbose exceptions, fixed signature, removed additional attributes
  920. * DataGridColumn.cs: Added all attributes
  921. * DataGridColumnCollection.cs: Added all attributes
  922. * DataGridPagerStyle.cs: Added all attributes
  923. * DataGridTableInternal.cs: Made DataGridTableInternal internal
  924. * DataList.cs: Added all attributes, more verbose exceptions, removed non-existing member
  925. * DropDownList.cs: Added all attributes
  926. * FontInfo.cs: Added all attributes
  927. * HyperLink.cs: Added all attributes
  928. * HyperLinkColumn.cs: Added all attributes
  929. * Image.cs: Added all attributes
  930. * ImageButton.cs: Added all attributes
  931. * Label.cs: Added all attributes
  932. * LinkButton.cs: Added all attributes
  933. * ListBox.cs: Added all attributes, added error checks, throws more exceptions
  934. * ListControl.cs: Added all attributes
  935. * ListItem.cs: Added all attributes
  936. * ListItemCollection.cs: Added attribute
  937. * Literal.cs: Added all attributes
  938. * Panel.cs: Added all attributes
  939. * RadioButton.cs: Added all attributes
  940. * RadioButtonList.cs: Added all attributes, added error checks, throws more exceptions
  941. * RangeValidator.cs: Added all attributes
  942. * RegularExpressionValidator.cs: Added all attributes
  943. * Repeater.cs: Added all attributes
  944. 2003-07-30 Andreas Nahr <[email protected]>
  945. * RequiredFieldValidator.cs: Added all attributes
  946. * Style.cs: Added all attributes
  947. * Table.cs: Added all attributes
  948. * TableCell.cs: Added all attributes, added error checks, throws more exceptions
  949. * TableCellCollection.cs: Added attribute
  950. * TableRow.cs: Added all attributes
  951. * TableRowCollection: Added attribute
  952. * TableStyle.cs: Added all attributes, improved error messages
  953. * TemplateColumn.cs: Added all attributes
  954. * TextBox.cs: Added all attributes, added error checks, throws more exceptions
  955. * ValidationSummary.cs: Added all attributes
  956. * WebControl.cs: Added all attributes
  957. * Xml.cs: Added all attributes
  958. 2003-07-30 Gonzalo Paniagua Javier <[email protected]>
  959. * DataGrid.cs: fixed signature of ItemCreated and PageIndexChanged.
  960. * DataList.cs: fixed signature of ItemCreated and ItemDataBound.
  961. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  962. * CheckBoxList.cs: fixes bug reported on the list about the state of
  963. the CheckButtons not being preserved across posts.
  964. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  965. * ListControl.cs: added SelectedValue property (1.1). Closes 46412.
  966. 2003-06-30 Gonzalo Paniagua Javier <[email protected]>
  967. * AdRotator.cs: fixed bug #44271 and a few others bugs. Mono-stylized.
  968. 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
  969. * ListControl.cs: save viewstate data when any of the 3 values is not
  970. null. Fixed condition to save selection indices. Closes bug #45493.
  971. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  972. * DataGrid.cs: fixed bug #43823.
  973. 2003-05-29 Gonzalo Paniagua Javier <[email protected]>
  974. * DataGrid.cs: fixed delegate type for SortCommand.
  975. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  976. * DataGridColumnCollection.cs: added missing return in RemoveAt.
  977. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  978. * DataGridColumnCollection.cs: fixed LoadViewState for the columns.
  979. Don't save ViewState is the number of columns is 0.
  980. 2003-05-02 Gonzalo Paniagua Javier <[email protected]>
  981. * DataGrid.cs: get the right item Type for the property we're reading
  982. fromt the data source.
  983. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  984. * Label.cs:
  985. * TextBox.cs: added control builder attribute.
  986. 2003-03-29 Gonzalo Paniagua Javier <[email protected]>
  987. * DataGrid.cs: Fixed SaveViewState and type of ItemDataBound.
  988. 2003-03-17 George Kodinov <[email protected]>
  989. * Unit.cs: Called the correct method to get the Numeric locale for the
  990. double conversion
  991. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  992. * ButtonColumn.cs: fixed a couple of infinite loop problems and render
  993. correctly the header of the column.
  994. * DataGridTableInternal.cs: don't assign a default ID to this control.
  995. * LinkButton.cs: raise bubble event in OnCommand.
  996. * TableCellCollection.cs: fixed the index returned by Add.
  997. * TableRowCollection.cs: ditto.
  998. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  999. * Xml.cs: don't call MapPathSecure when setting DocumentSource.
  1000. 2003-02-05 Gonzalo Paniagua Javier <[email protected]>
  1001. * RangeValidator.cs: fixed bug #37577. Thanks to Stephane Tombeur
  1002. for reporting the bug and providing the fix.
  1003. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  1004. * DataGrid.cs: AutoGenerateColumns defaults to true. Fixed
  1005. CreateColumnSet. Set the owner of the column when auto generated.
  1006. In PrepareControlHierarchyForItem, fixed for loop bound.
  1007. * LinkButtonInternal.cs: fixed infinite recursion bug.
  1008. Fixes bug #37124.
  1009. 2003-01-22 Zdravko Tashev <[email protected]>
  1010. * Xml.cs: a few fixes.
  1011. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  1012. * DataList.cs: handle the exception when adding new keys to
  1013. DataKeysArray.
  1014. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  1015. * BaseDataList.cs: what can I say for this one? I spent so many time
  1016. until I finally found this that I'm gonna miss this f....g bug... ;-).
  1017. Farewell. Now we can get events from image buttons inside Data*.
  1018. * DataList.cs: now the value stored in ViewState for item count is
  1019. correct.
  1020. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  1021. * DataGrid.cs: default value for ShowHeaders is true. Fixed style for
  1022. Header and Footer.
  1023. * DataGridColumn.cs: added SetOwner method.
  1024. * DataGridColumnCollection.cs: set the owner of the column when added.
  1025. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  1026. * BoundColumn.cs: typo.
  1027. * DataGrid.cs: use 'as' instead of casting. Typo.
  1028. * HyperLinkColumn.cs: call OnColumnChanged when any property change.
  1029. Mono-stylized.
  1030. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  1031. * HyperLink.cs: fixes bug #36336.
  1032. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  1033. * DataList.cs: fixed IRepeatInfoUser.GetItemStyle.
  1034. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  1035. * BaseValidator.cs: return an empty string in GetControlValidationValue
  1036. when GetValue returned null.
  1037. * CompareValidator.cs: fixed EvaluateIsValid.
  1038. * RegularExpressionValidator.cs: fixed EvaluateIsValid.
  1039. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  1040. * Xml.cs: use MapPathSecure to get the path of the document.
  1041. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  1042. * DataList.cs: fixed header & footer.
  1043. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  1044. * DataList.cs: for header and footer don't use data source.
  1045. Instantiate in the DataListItem, not in the DataList.
  1046. databind-template.aspx works now.
  1047. 2002-11-21 Gonzalo Paniagua Javier <[email protected]>
  1048. * BaseDataList.cs:
  1049. (Render): call RenderContents (), not base.RenderContents ().
  1050. * DataList.cs: style.
  1051. But I still haven't found what i'm looking for....
  1052. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  1053. * Calendar.cs: fixed loading/saving selected dates.
  1054. * SelectedDatesCollection.cs: added internal function to get the
  1055. underlying ArrayList.
  1056. Calendar navigation works again. Selecting dates too.
  1057. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  1058. * DataList.cs: added a few attributes and fixed infinite recursion.
  1059. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  1060. * ListItemCollection.cs: fixed LoadViewState.
  1061. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  1062. * TableItemStyle.cs: TypeDescriptor.GetConverter seems to fail.
  1063. Commented out some code until it works.
  1064. 2002-10-29 Gaurav Vaish <[email protected]>
  1065. * BaseCompareValidator.cs - Fixed operator bug in
  1066. Compare(string, string, ...)
  1067. * CompareValidator.cs - EvaluateIsValid() : Implemented.
  1068. 2002-10-28 Gaurav Vaish <[email protected]>
  1069. * BoundColumn.cs - InitializeCell(TableCell, int, ListItemType)
  1070. : Implemented.
  1071. - All Properties : Now make use of ViewState.
  1072. 2002-10-28 Gaurav Vaish <[email protected]>
  1073. * BaseValidator.cs - Uncomment NotImplementedException.
  1074. 2002-10-28 Gaurav Vaish <[email protected]>
  1075. * BaseValidator.cs - Minor changes in TODO comments.
  1076. 2002-10-28 Gaurav Vaish <[email protected]>
  1077. * BaseValidator.cs - DetermineRenderUpLevel() : Uncomment
  1078. the NotImplementedException being thrown.
  1079. * DataGridPagerStyle.cs - Mode { set; } : Implemented.
  1080. * DataGridLinkButton.cs - Added new class (private) : Implemented.
  1081. * DataGrid.cs - InitializePager(DataGridItem, int,
  1082. PagedDataSource) : Implemented.
  1083. 2002-10-28 Gaurav Vaish <[email protected]>
  1084. * DataList.cs - PrepareControlHierarchy() : Implemented.
  1085. 2002-10-28 Gaurav Vaish <[email protected]>
  1086. * DataList.cs - RenderContents(HtmlTextWriter) : Implemented.
  1087. - GetItem(ListItemType, int) : Removed TODO.
  1088. - CreateControlHierarchy(bool) : Implemented.
  1089. - CreateItem(int, ListItemType) : Implemented.
  1090. - CreateItem(int, ListItemType,
  1091. bool, object) : Implemented.
  1092. - InitializeItem(DataItem) : Implemented.
  1093. * DataGrid.cs - CreateControlHierarchy(bool) : Bug fix.
  1094. The ViewState["_!ItemCount"],
  1095. ViewState["_!DataSource_ItemCount"]
  1096. are shared by DataList and DataGrid, and hence
  1097. should share the same name.
  1098. - ResolveDataSource(object, string)
  1099. : Removed. Use System.Web.UI.Utils.DataSourceHelper
  1100. ::GetResolvedDataSource(object, string).
  1101. 2002-09-12 Gonzalo Paniagua Javier <[email protected]>
  1102. * DataGrid.cs: fixed compilation
  1103. 2002-09-12 Gaurav Vaish <[email protected]>
  1104. * PagedDataSource.cs - FirstIndexInPage : Fixed bug.
  1105. * DataGrid.cs - CreateControlHierarchy(bool)
  1106. : working towards completion.
  1107. - ResolveDataSource(object, string)
  1108. : stubbed new method
  1109. - CreateItem(....)
  1110. : stubbed new method
  1111. Well. It's almost done.
  1112. * DataGridTableInternal.cs
  1113. - Added new internal class.
  1114. 2002-08-28 Gaurav Vaish <[email protected]>
  1115. * DataSourceInternal.cs - Added new class (internal).
  1116. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  1117. * FontUnit.cs:
  1118. * HorizontalAlign.cs:
  1119. * Unit.cs:
  1120. * VerticalAlign.cs: fixes based on class status page.
  1121. * HorizontalAlignConverter.cs: implemented.
  1122. * VerticalAlignConverter.cs: implemented.
  1123. * FontUnitConverter.cs: implemented GetStandardValues ().
  1124. * WebColorConverter.cs: implemented ConvertFrom () and ConvertTo ().
  1125. 2002-08-19 Gaurav Vaish <[email protected]>
  1126. * DataGrid.cs - AutoCreateColumns: Bug fixes.
  1127. 2002-08-19 Gaurav Vaish <[email protected]>
  1128. * DataGrid.cs - AutoCreateColumns: completed, hopefully!
  1129. 2002-08-19 Gaurav Vaish <[email protected]>
  1130. * DataGrid.cs - Working on the undocumented protected
  1131. method CreateColumnSet. AutoCreateColumns method
  1132. stubbed. Left CreateControlHierarchy for the time
  1133. being, looks like I'm going insane. ;-)
  1134. 2002-08-19 Gaurav Vaish <[email protected]>
  1135. * Button.cs - Steffen's OnCommand bug fix.
  1136. 2002-08-12 Gaurav Vaish <[email protected]>
  1137. * DataGrid.cs - Added protected method (skeleton)
  1138. CreateColumnSet(PagedDataSource, bool)
  1139. Still trying to know how will it be used
  1140. and what for...
  1141. 2002-08-10 Gonzalo Paniagua Javier <[email protected]>
  1142. * PagedDataSource.cs: fixed compilation.
  1143. 2002-08-08 Gaurav Vaish <[email protected]>
  1144. * DataGrid.cs - Added private method
  1145. CreatePagedDataSource
  1146. - Started work on
  1147. CreateControlHierarchy(bool)
  1148. * PagedDataSource.cs - Bug fixed.
  1149. CurrentPageIndex is writable.
  1150. 2002-08-07 Gonzalo Paniagua Javier <[email protected]>
  1151. * DataGrid.cs: fixed typo.
  1152. * DataGridPagerStyle.cs: added IsPagerOnTop and IsPagerOnBottom.
  1153. 2002-08-06 Gaurav Vaish <[email protected]>
  1154. * DataGridColumn.cs - Added internal methods to get the
  1155. various styles (needed in DataGrid.cs)
  1156. * DataGrid.cs - Completed the method
  1157. PrepareControlHierarchy()
  1158. 2002-08-06 Gaurav Vaish <[email protected]>
  1159. * DataGrid.cs - Wokring on PrepareControlHierarchy()
  1160. - Added private method
  1161. PrepareControlHierarchyForItem()
  1162. 2002-08-05 Gaurav Vaish <[email protected]>
  1163. * DataGrid.cs - Completed method
  1164. OnBubbleEvent(object, EventArgs)
  1165. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  1166. * Xml.cs: implemented document/transform load.
  1167. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  1168. * Calendar.cs: added myself to the list of authors.
  1169. * DropDownList.cs: fixed a few properties.
  1170. * ListControl.cs: fixed SelectedIndex.
  1171. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  1172. * Calendar.cs: lots of fixes. Render days. Still left to persist
  1173. selected days when changing month.
  1174. * Unit.cs: fixed Percentage and Pixel.
  1175. * WebControl.cs: a few properties are now using ControlStyle instead
  1176. of ViewState to persist.
  1177. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  1178. * BaseValidator.cs: it works now.
  1179. * DataGridColumn.cs: added attribute and made it abstract.
  1180. * RequiredFieldValidator.cs: fixed return value in EvaluateIsValid.
  1181. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  1182. * TextBox.cs: default for Wrap is true.
  1183. (OnPreRender): don't save Text if there are no listeners on TextChanged.
  1184. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  1185. * DropDownList.cs:
  1186. (ToolTip): fixed.
  1187. * ListItem.cs:
  1188. (LoadViewState): fixed.
  1189. * ListItemCollection.cs:
  1190. (TrackViewState): use items instead of 'this' in foreach.
  1191. * Style.cs:
  1192. (LoadViewState): more checking of parameters.
  1193. * WebControl.cs: implemented LoadViewState and SaveViewState.
  1194. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  1195. * ListItem.cs: there was no code to unset the flags!!!
  1196. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  1197. * FontUnit.cs: use a hashtable for mapping size name to value.
  1198. * HyperLink.cs: fixed a bug and a typo.
  1199. * Unit.cs: some fixes to internal constructor.
  1200. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  1201. * ListControl.cs: fixed a couple of range checks.
  1202. * WebControl.cs: MS lies! Not all WebControls must be rendered inside
  1203. an HtmlForm (p.e., Label).
  1204. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  1205. * AdRotator.cs:
  1206. * Button.cs:
  1207. * Calendar.cs:
  1208. * CheckBox.cs:
  1209. * CheckBoxList.cs:
  1210. * DataList.cs:
  1211. * DropDownList.cs:
  1212. * HyperLink.cs:
  1213. * HyperLinkColumn.cs:
  1214. * Image.cs:
  1215. * ImageButton.cs:
  1216. * Label.cs:
  1217. * LinkButton.cs:
  1218. * ListBox.cs:
  1219. * Panel.cs:
  1220. * PlaceHolder.cs:
  1221. * RadioButton.cs:
  1222. * RadioButtonList.cs:
  1223. * Table.cs:
  1224. * TableRow.cs:
  1225. * TextBox.cs:
  1226. * WebControl.cs: removed attributes added by mistake (i used
  1227. GetCustomAttributes (true), d'oh!).
  1228. * DataListItem.cs: implemented RenderItem.
  1229. * Repeater.cs: implemented CreateItem and InitializeItem.
  1230. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  1231. * BaseDataList.cs: a couple of fiex and added attributes.
  1232. * DataGrid.cs: little fixes.
  1233. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  1234. * CheckBoxList.cs:
  1235. * DataGrid.cs:
  1236. * DataList.cs:
  1237. * DropDownList.cs:
  1238. * ListBox.cs:
  1239. * PlaceHolder.cs:
  1240. * RadioButton.cs:
  1241. * RadioButtonList.cs:
  1242. * TableRow.cs:
  1243. * WebControl.cs:
  1244. * Xml.cs: forgot to add using System.ComponentModel.
  1245. * BaseValidator.cs: use explicitly
  1246. System.ComponentModel.AttributeCollection as there is another class
  1247. with the same name under System.Web.UI.
  1248. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  1249. * AdRotator.cs:
  1250. * Button.cs:
  1251. * Calendar.cs:
  1252. * CheckBox.cs:
  1253. * CheckBoxList.cs:
  1254. * DataGrid.cs:
  1255. * DataList.cs:
  1256. * DropDownList.cs:
  1257. * HyperLink.cs:
  1258. * Image.cs:
  1259. * ImageButton.cs:
  1260. * Label.cs:
  1261. * LinkButton.cs:
  1262. * ListBox.cs:
  1263. * Panel.cs:
  1264. * PlaceHolder.cs:
  1265. * RadioButton.cs:
  1266. * RadioButtonList.cs:
  1267. * Table.cs:
  1268. * TableRow.cs:
  1269. * TextBox.cs:
  1270. * WebControl.cs:
  1271. * Xml.cs: added/fixed all attributes used by xsp.
  1272. * BaseValidator.cs: some fixes.
  1273. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  1274. * Table.cs:
  1275. (AddAttributesToRender): correctly default to border=1.
  1276. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  1277. * AdRotator.cs:
  1278. (LoadAdFile): make the dictionary null after every iteration.
  1279. * LinkButton.cs:
  1280. * ListControl.cs:
  1281. * ListItem.cs: fixed warnings.
  1282. Mon Jul 1 16:23:15 CEST 2002 Paolo Molaro <[email protected]>
  1283. * Style.cs, TableRow.cs, DataListItem.cs: fix compilation.
  1284. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  1285. * DataGridColumn.cs:
  1286. * DataGridPagerStyle.cs:
  1287. * DataList.cs:
  1288. * DataListItem.cs:
  1289. * Image.cs:
  1290. * LinkButton.cs:
  1291. * ListControl.cs:
  1292. * ListItem.cs:
  1293. * ListItemCollection.cs:
  1294. * Repeater.cs:
  1295. * ServerValidateEventArgs.cs:
  1296. * Style.cs:
  1297. * TableRow.cs:
  1298. * WebControl.cs:
  1299. * Xml.cs: more class status page based changes.
  1300. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  1301. * Button.cs:
  1302. (.ctor): fixed to render the correct tag.
  1303. (IPostBAckEventHandler.RaisePostBackEvent): fixed.
  1304. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  1305. * WebControl.cs:
  1306. (AddAttributesToRender): call Page.VerifyRenderingInServerForm. All
  1307. WebControl derived classes should be rendered inside a HtmlForm.
  1308. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  1309. * Repeater.cs: implemented CreateControlHierarchy. Fixed some event
  1310. processing methods.
  1311. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  1312. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  1313. * RepeatInfo.cs: implemented DoHorizontalRendering.
  1314. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  1315. * System.Web.UI.WebControls/Repeater.cs:
  1316. (Controls):
  1317. (OnDataBinding): fixed stack overflow.
  1318. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  1319. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  1320. * RepeatInfo.cs: implemented DoHorizontalRendering.
  1321. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  1322. * WebControl.cs:
  1323. (CopyBaseAttributes): copy Attributes and don't throw exception.
  1324. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  1325. * ListBox.cs: mono-stylized.
  1326. (AddAttributesToRender): call parent class method.
  1327. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  1328. * Style.cs: fixed IsEmpty and Width.
  1329. * Table.cs: mono-stylized.
  1330. (TableRowControlCollection.AddAt): fixed.
  1331. (AddAttributesToRender): fixed.
  1332. * TableCell.cs: mono-stylized.
  1333. (.ctor): use PreventAutoID.
  1334. (AddAttributesToRender): fixed.
  1335. (AddParsedSubObject): fixed.
  1336. * TableRow.cs: mono-stylized. Added
  1337. ParseChildren attribute.
  1338. * TableStyle.cs:
  1339. (get_GridLine): fixed.
  1340. 2002-06-16 Gonzalo Paniagua Javier <[email protected]>
  1341. * Panel.cs: fixed stack overflow.
  1342. * Unit.cs: use Int32.Parse and Single.Parse instead of Int32Converter
  1343. and SingleConverter.
  1344. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1345. * RadioButton.cs: mono-stylized and some little fixes.
  1346. * TextBox.cs: mono-stylized.
  1347. (MaxLength): fixed typo.
  1348. (AddAttributesToRender): don't render the text between the tags for
  1349. SingleLine, use value attribute for it. Don't render the text for
  1350. Password.
  1351. (OnPreRender): don't throw exception and call base.OnPreRender.
  1352. (Render): for MultiLine, render the text between the opening and
  1353. closing tags encoded as HTML.
  1354. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1355. * ImageButton.cs:
  1356. (AddAttributesToRender): fixer another stack overflow.
  1357. * WebControl.cs:
  1358. (TagName): modified to use TagKey instead of tagKey as the property
  1359. can be overriden.
  1360. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1361. * LinkButton.cs: mono-stylized.
  1362. (AddParsedSubObject):
  1363. (RenderControls): little fixes.
  1364. * WebControl.cs:
  1365. (AddAttributesToRender): fixed usage of IEnumerator.
  1366. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1367. * Literal.cs: beautified.
  1368. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1369. * Label.cs: beautified and fixed a couple of 'classic' bugs.
  1370. * WebControl.cs: use Span as default tag when no other provided in
  1371. constructor. That is what MS renders.
  1372. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1373. * Button.cs:
  1374. (AddAttributesToRender): fixed (classic) stack overflow.
  1375. * CheckBox.cs: mono-stylized.
  1376. (AutoPostBack): fixed stack overflow.
  1377. (Render): fixed alignment issues. Also set the For attribute always
  1378. for the label.
  1379. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  1380. * AdRotator.cs: GetData does not work as it should, but now it returns
  1381. useful data (only the first ad in the file). Set the NavigateUrl
  1382. property in the hyperlink if available.
  1383. * HyperLink.cs: fixed constructor and a couple of stack overflows.
  1384. * Image.cs: added an attribute and fixed stack overflow.
  1385. * WebControl.cs:
  1386. (RenderBeginTag): fixed.
  1387. (TagName): don't call Enum.IsDefined twice.
  1388. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  1389. * WebControl.cs: added attributes PersistChildrenAttribute and
  1390. ParseChildrenAttribute.
  1391. 2002-05-24 Duncan Mak <[email protected]>
  1392. * DataGridItem.cs (SetItemType): Changed function signature to
  1393. match 1.0 spec.
  1394. * ListItemCollection.cs (this): Changes the visibility level of
  1395. the indexer.
  1396. * Repeater.cs (OnItemCommand):
  1397. (OnItemCreated):
  1398. (OnItemDataBound): Added necessary casts.
  1399. 2002-05-07 Duncan Mak <[email protected]>
  1400. * Button.cs (AddAttributesToRender):
  1401. * ImageButton.cs (AddAttributesToRender): Added a missing argument to the
  1402. GetClientValidatedEvent method.
  1403. 2002-03-27 Gaurav Vaish <[email protected]>
  1404. * Removed extra methods, corrected access modifiers to several
  1405. methods.
  1406. 2002-03-26 Gaurav Vaish <[email protected]>
  1407. * <SeveralFiles>.cs - Added some attributes
  1408. * FontUnitConverter.cs - Added stubs for GetStandardValues*(..)
  1409. methods. Will complete them later. Right now, busy with
  1410. the attributes part.
  1411. * RepeaterItem.cs - Completed.
  1412. Oh God! Mercy! I will die applying attributes. I look at the missing
  1413. part in the class-status - daemon! Kyrie eleison!
  1414. 2002-03-19 Gaurav Vaish <[email protected]>
  1415. Some bug fixes
  1416. * AdRotator.cs - Added definition for Font.
  1417. * BaseCompareValidator.cs - Added definition for Controls.
  1418. * Calendar.cs - SelectMonthText definition corrected.
  1419. * DataList.cs - Added definition for SeparatorTemplate.
  1420. * BorderStyle.cs - Namespace correction. It belongs not to UI,
  1421. but to UI.WebControls.
  1422. 2002-03-17 Gaurav Vaish <[email protected]>
  1423. Finally, I have made it. Today I did a second build for the
  1424. System.Web assembly. It compiled 195 classes today.
  1425. I am waiting eagerly for the runtime to come up so that the objects
  1426. may be tested to their last levels. Several of the methods are still
  1427. under the tag of "TODO" throwing NotImplementedException. Well, I
  1428. hope to remove them soon, but how far is this soon - even I don't
  1429. know, though I am happy to make the build a success even before
  1430. the vacations to come.
  1431. 2002-03-07 Gaurav Vaish <[email protected]>
  1432. Yesterday and today I tried to do some building of the aseembly,
  1433. but was dumped with uncoutably infinite errors. ;-)
  1434. I have put the copies of the recent errors on my home page, want
  1435. to have a look at them? See:
  1436. http://mastergaurav.virtualave.net/mono/
  1437. I don't know what to do with these errors. Oh! The buggy me! How
  1438. will I overcome myself. Hopefully, by when my vacations over, I
  1439. should have made a repository where the build will not fail.
  1440. 2002-03-05 Gaurav Vaish <[email protected]>
  1441. I am now going to do a build that will include the
  1442. System.Web.UI.WebControls namespace. Hoping that I will make it
  1443. soon. My exams are coming near and I have to pack up soon.
  1444. 2002-03-04 Gaurav Vaish <[email protected]>
  1445. Comments:
  1446. And with this, ie, today's work, all the objects mentioned in the
  1447. namespace appear in the implementation. But it may not be worth
  1448. trying to go for a build because of dependence of several of the
  1449. internal methods that may clash with already available assembly
  1450. System.Web.
  1451. Also, the classes lack possible attributes, like those informing
  1452. about child-controls etc. But I have to first create the attribute
  1453. classes before I attach the attributes to the classes.
  1454. * CustomValidator.cs - Completed. In process realized that
  1455. I have to complete / rejuvinate BaseValidator class.
  1456. * BaseValidator.cs - Complete rejuvination. Completed 80%
  1457. of the job. All that is left is Render(HtmlTextWriter),
  1458. DetermineRenderUplevel(), RegisterValidatorCommonScript()
  1459. RegisterValidatorDeclaration()
  1460. * DataGridPagerStyle.cs - Completed. That adds one more missle
  1461. in my artillery.
  1462. * DataKeyCollection.cs - Completed. Petty small.
  1463. * Repeater.cs - Work started off. This is a quite
  1464. heavy class. Hooh!
  1465. * DataGridItemEventArgs.cs,
  1466. * DataGridShortCommandEventArgs.cs,
  1467. * DataListItemEventArgs.cs,
  1468. * MonthChangedEventArgs.cs,
  1469. * RepeaterItemEventArgs.cs,
  1470. * ServerValidateEventArgs.cs,
  1471. * DataGridPageChangedEventArgs.cs
  1472. - Damn, I marked them "*", while they
  1473. did not exist.
  1474. * Repeater.cs - Done all except for an undocumented
  1475. method CreateControlHierarchy(bool). Though the method
  1476. is quite clear by its name, but it will take some time
  1477. for me to come with some material to flush in.
  1478. 2002-03-03 Gaurav Vaish <[email protected]>
  1479. * SelectedDatesCollection.cs - Completed.
  1480. * PagedDataSource.cs - Completed. Pathetically nice class.
  1481. * RegularExpressionValidator.cs
  1482. - Completed. Ridiculously small and
  1483. annoyinglyc crazy-driving class, basically the method
  1484. EvaluateIsValid().
  1485. * RangeValidator.cs - Completed.
  1486. * DataGridColumn.cs - Completed.
  1487. * EditCommandColumn.cs - All is complete except for the
  1488. InitializeCell(TableCell, int, ListItemType) method.
  1489. * DataListItem.cs - All done except for a longish method
  1490. RenderItem(HtmlTextWriter, bool, bool)
  1491. 2002-03-02 Gaurav Vaish <[email protected]>
  1492. * RepeaterItemCollection.cs - Completed.
  1493. I love *Collection classes. I am planning to make a
  1494. program that will generate a *Collection class. It's so
  1495. simple and the same. ;-)
  1496. * DataGridColumnCollection.cs - Completed.
  1497. ... except probably for *ColumnCollection classes, where
  1498. you have to put in some more effort. Still, these class
  1499. generation can be automated.
  1500. * DataListItemCollection.cs - Completed.
  1501. See, how easily, in less than a quarter of a minute, I
  1502. completed this class - manually. Copy-Paste/Cut-Replace.
  1503. 2002-02-21 Gaurav Vaish <[email protected]>
  1504. * DataGrid.cs - Following methods implemented:
  1505. TrackViewState(), LoadViewState(object), SaveViewState(),
  1506. On* -- The event raisers.
  1507. OnBubbleEvent(object, EventArgs) is still incomplete.
  1508. * DataGridItem.cs - Initial Implementation
  1509. * DataGridItemCollection.cs - Completed.
  1510. 2002-02-08 Gaurav Vaish <[email protected]>
  1511. * DataGrid.cs - Initial Implementation. Worked
  1512. primarily with some properties.
  1513. 2002-02-07 Gaurav Vaish <[email protected]>
  1514. * ListBox.cs - Completed. Implemented
  1515. LoadPostData(string, NameValueCollection)
  1516. * RequiredFieldValidator.cs - Completed. Pretty simple class.
  1517. 2002-02-06 Gaurav Vaish <[email protected]>
  1518. * ListBox.cs - Implemented the following:
  1519. RaisePostDataChangedEvent()
  1520. 2002-02-02 Gaurav Vaish <[email protected]>
  1521. * ListBox.cs - Supports the following properties:
  1522. BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
  1523. ToolTip.
  1524. Methods:
  1525. AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
  1526. RenderContents(HtmlTextWriter)
  1527. 2002-02-01 Gaurav Vaish <[email protected]>
  1528. * TargetConverter.cs - Completed
  1529. * TemplateColumn.cs - Completed
  1530. * DataList.cs - Corrected the get-er methods for the
  1531. *Style objects. Corrected the get/set-er methods for ViewState
  1532. related objects.
  1533. Addded support for properties:
  1534. GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
  1535. RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
  1536. SelectedItem, SelectedItemStyle, SelectedItemTemplate,
  1537. SeparatorStyle, SeparatorItemTemplate.
  1538. Events:
  1539. CancelCommand, DeleteCommand, EditCommand, ItemCommand,
  1540. ItemCreated, ItemDataBound, UpdateCommand.
  1541. Methods:
  1542. CreateControlStyle(), LoadViewState(object),
  1543. SaveViewState(), TrackViewState
  1544. Event handlers:
  1545. OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
  1546. OnEditCommand, OnItemCommand, OnItemCreated,
  1547. OnItemDataBound, OnUpdateCommand
  1548. Added dummy methods for some undocumented methods:
  1549. CreateControlHierarchy(bool), CreateItem(int, ListItemType),
  1550. CreateItem(int, ListItemType, bool, object),
  1551. PrepareControlHierarchy(), InitializeItem(DataListItem)
  1552. * ListBox.cs - Started working.
  1553. 2002-01-31 Gaurav Vaish <[email protected]>
  1554. * RepeaterInfo.cs - Initial Implementation. Done all
  1555. except for RepeatDirection.Vertical
  1556. * TableStyle.cs - Completed
  1557. 2002-01-30 Gaurav Vaish <[email protected]>
  1558. * DropDownList.cs - Completed
  1559. * ListItemCollection.cs - Added method FindByValueInternal to
  1560. assist in the derived classes.
  1561. Discovered bug in FindByValue. Removed
  1562. * UnitConverter.cs - Completed
  1563. * PlaceHolder.cs - What can be simpler than this?
  1564. * PlaceHolderControlBuilder.cs
  1565. - Uh! Damn cool one.
  1566. * RadioButtonList.cs - Initial Implementation. All is done
  1567. except for the implementation of
  1568. method IRepeatInfoUser.RenderItem(...)
  1569. * ValidatedControlConverter.cs
  1570. ^^^^^^^^^^^^^^^^^^^^^^^^^ - Looks complete. Doubtful though !!
  1571. * ValidationSummary.cs - Initial Implementation.
  1572. * WebColorConverter.cs - Initial Implementation
  1573. 2002-01-27 Gaurav Vaish <[email protected]>
  1574. * FontNamesConverter.cs - Completed
  1575. * FontUnitConverter.cs - Partial Implementation
  1576. * ListItemControlBuilder.cs - Completed
  1577. 2002-01-27 Gaurav Vaish <[email protected]>
  1578. * TextBox.cs - All done except *Render* methods
  1579. * TextBoxControlBuilder.cs - Completed
  1580. * Xml.cs - Partial Implementation
  1581. 2002-01-26 Gaurav Vaish <[email protected]>
  1582. * RadioButton.cs - Completed
  1583. * TextBox.cs - Partial Implementation
  1584. 2002-01-25 Gaurav Vaish <[email protected]>
  1585. * Panel.cs - Completed
  1586. * TableItemStyle.cs - Completed
  1587. 2002-01-18 Gaurav Vaish <[email protected]>
  1588. * TableCellCollection.cs - Completed
  1589. * TableRowCollection.cs - Completed
  1590. * TableHeaderCell.cs - Completed
  1591. * TableRow.cs - Completed
  1592. 2002-01-09 Gaurav Vaish <[email protected]>
  1593. * TableCellControlBuilder.cs - Completed
  1594. * Table.cs - Completed
  1595. * TableCell.cs - Completed
  1596. 2002-01-07 Gaurav Vaish <[email protected]>
  1597. * CheckBoxList.cs - Completed
  1598. * ButtonColumn.cs - Completed
  1599. * Button.cs - Completed
  1600. 2001-12-28 Gaurav Vaish <[email protected]>
  1601. * HyperLink.cs - Completed
  1602. * Image.cs - Completed
  1603. * ImageButton.cs - Completed
  1604. * Label.cs - Completed
  1605. * LabelControlBuilder.cs - Completed
  1606. * LinkButton.cs - Completed
  1607. * LinkButtonControlBuilder.cs - Completed
  1608. * Literal.cs - Completed
  1609. * LieteralControlBuilder.cs - Completed
  1610. * FontUnit.cs - Completed
  1611. 2001-12-27 Gaurav Vaish <[email protected]>
  1612. * Calendar.cs - Completed the functions of Render*,
  1613. ViewStates (Track/View/Save),
  1614. RaisePostBackEvent.
  1615. Left: RenderAllDays (partially)
  1616. 2001-12-21 Gaurav Vaish <[email protected]>
  1617. * Calendar.cs - Added some more functions
  1618. * Style.cs - Completed
  1619. * ListItem.cs - Completed
  1620. * ListItemCollection.cs - Completed
  1621. Made the first successful build of System.Web.dll that included
  1622. System.Web.UI.WebControls!
  1623. 2001-12-20 Gaurav Vaish <[email protected]>
  1624. FontInfo.cs - Complete revamp. Completed
  1625. 2001-12-19 Gaurav Vaish <[email protected]>
  1626. ListItemCollection.cs - Completed
  1627. ListItem.cs - Initial Implementation
  1628. Style.cs - Initial Implementation
  1629. Right now I am in a total mood to do a successful build. Creating so many
  1630. classes, completing classes in System.Web System.Web.UI namespaces.
  1631. 2001-12-18 Gaurav Vaish <[email protected]>
  1632. TODO - Properly added
  1633. CheckBox.cs - Completed
  1634. BaseDataList.cs - Completed
  1635. DayRenderEventArgs.cs - Completed
  1636. RepeaterItem.cs - Initial implementation
  1637. 2001-12-17 Gaurav Vaish <[email protected]>
  1638. BaseCompareValidator.cs - Completed
  1639. AdRotator.cs - Completed
  1640. 2001-12-15 Gaurav Vaish <[email protected]>
  1641. CommandEventArgs.cs - Completed
  1642. DataGridCommandEventArgs.cs - Completed
  1643. RepeaterCommandEventArgs.cs - Completed
  1644. DataListCommandEventArgs.cs - Completed
  1645. CompareValidator.cs - Partial Implementation
  1646. 2001-12-02 Gaurav Vaish <[email protected]>
  1647. CheckBoxList.cs - Partial Implementation.
  1648. All except "Render"
  1649. 2001-12-01 Gaurav Vaish <[email protected]>
  1650. ListControl.cs - Completed
  1651. 2001-11-30 Gaurav Vaish <[email protected]>
  1652. CheckBox.cs - Completed
  1653. ListControl.cs - Initial Implementation
  1654. CheckBoxList.cs - Started with it, but first needed
  1655. ListControl. Left it.
  1656. 2001-11-29 Gaurav Vaish <[email protected]>
  1657. CalendarDay.cs - Making a note that this
  1658. has been implemented
  1659. Calendar.cs - Making a note that have made some changes.
  1660. Unimplmented functions throw
  1661. NotImplementedException
  1662. CheckBox.cs - Can now "Render" and "LoadPostData"
  1663. 2001-11-08 Gaurav Vaish <[email protected]>
  1664. WebControl.cs - Total Revamp, Partial Implementation
  1665. AdRotator.cs - Able to load files
  1666. AdCreatedEventArgs.cs - Implemented
  1667. 2001-11-05 Gaurav Vaish <[email protected]>
  1668. Calendar.cs - Initial Implementation
  1669. ButtonColumn.cs - Initial Implementation
  1670. Button.cs - Initial Implementation
  1671. BoundColumn.cs - Initial Implementation
  1672. BaseCompareValidator.cs - Minor Changes
  1673. DataList.cs, BaseValidator.cs, BaseDataList.cs
  1674. - Added more functions, other changes
  1675. 2001-10-28 Gaurav Vaish <[email protected]>
  1676. WebControl.cs - Initial Implementation
  1677. DataList.cs - Initial Implementation
  1678. BaseValidator.cs - Initial Implementation
  1679. BaseDataList.cs - Initial Implementation
  1680. 2001-10-27 Gaurav Vaish <[email protected]>
  1681. AdCreatedEventArgs.cs - Initial Implementation
  1682. AdCratedEventHandler.cs - Implemented
  1683. AdRotator.cs - Initial Implementation
  1684. BorderStyle.cs - Implemented
  1685. ButtonColumnStyle.cs - Implemented
  1686. CalendarSelectionMode.cs - Implemented
  1687. DayNameFormat.cs - Implemented
  1688. FirstDayOfWeek - Implemented
  1689. FontInfo.cs - Partial Implementation
  1690. FontSize.cs - Implemented
  1691. GridLines.cs - Implemented
  1692. HorizontalAlign.cs - Implemented
  1693. HyperLink.cs - Initial Implementation
  1694. ImageAlign.cs - Implemented
  1695. IRepeatInfoUser.cs - Implemented
  1696. ListItemType.cs - Implemented
  1697. ListSelectionMode.cs - Implemented
  1698. NextPrevFormat.cs - Implemented
  1699. PagerMode.cs - Implemented
  1700. PagerPosition.cs - Implemented
  1701. RepeatDirection.cs - Implemented
  1702. RepeatLayout.cs - Implemented
  1703. TextAlign.cs - Implemented
  1704. TextBoxMode.cs - Implemented
  1705. TitleFormat.cs - Implemented
  1706. UnitType.cs - Implemented
  1707. ValidationCompareOperator.cs
  1708. - Implemented
  1709. ValidationDataType.cs - Implemented
  1710. ValidationSummaryDisplayMode.cs
  1711. - Implemented
  1712. ValidatorDisplay.cs - Implemented
  1713. VerticalAlign.cs - Implemented
  1714. i/ File Created 2001-11-13