ChangeLog 101 KB

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