ChangeLog 75 KB

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