ChangeLog 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899
  1. 2005-08-31 Chris Toshok <[email protected]>
  2. * XmlDataSource.cs (GetXmlDataDocument): rename this to
  3. GetXmlDocument, and change the return value from XmlDataDocument
  4. to XmlDocument.
  5. (LoadXmlDataDocument): similar change.
  6. (Save): xmlDataDocument -> xmlDocument.
  7. (CanBeSaved): there's no ReadOnly attribute.
  8. (LoadViewState, SaveViewState, TrackViewState): nuke.
  9. (GetHierarchicalView): xmlDataDocument -> xmlDocument.
  10. (CacheDuration): stub out with NIE.
  11. (CacheExpirationPolocy): same.
  12. (CacheKeyDependency): same.
  13. (EnableCaching): same.
  14. (ReadOnly): nuke.
  15. (Data, DataFile): xmlDataDocument -> xmlDocument.
  16. (Schema, SchemaFile): nuke.
  17. (Transform, TransformFile): xmlDataDocument -> xmlDocument.
  18. 2005-08-30 Lluis Sanchez Gual <[email protected]>
  19. * SubMenuStyle.cs, MenuItemStyle.cs, TreeNodeStyle.cs:
  20. Don't use the obsolete IsSet method.
  21. * Menu.cs: Implement IPostBackEventHandler.RaisePostBackEvent.
  22. * CheckBox.cs: Implement some 2.0 methods.
  23. * GridView.cs: Removed some "throw new NotImplementedException"
  24. 2005-08-29 Chris Toshok <[email protected]>
  25. * TreeView.cs: Use the StateBag accessors Ben added, and implement
  26. SkipLinkText and Visible.
  27. 2005-08-29 Chris Toshok <[email protected]>
  28. * TreeView.cs: fix typo in an attribute.
  29. 2005-08-29 Jackson Harper <[email protected]>
  30. * PagedDataSource.cs: If it's not a list or collection we don't
  31. use a bounded enumerator.
  32. 2005-08-29 Chris Toshok <[email protected]>
  33. * LinkButton.cs: fix some 2.0 Page/ClientScript obsolete warnings.
  34. * CheckBox.cs: same.
  35. * BaseValidator.cs: same.
  36. * DropDownList.cs: same.
  37. * ValidationSummary.cs: same.
  38. 2005-08-28 Chris Toshok <[email protected]>
  39. * XmlHierarchyData.cs: fix IHierarchyData.GetParent.
  40. 2005-08-26 Chris Toshok <[email protected]>
  41. * TextBox.cs: implement ValidationGroup and CausesValidation
  42. properties.
  43. 2005-08-26 Lluis Sanchez Gual <[email protected]>
  44. * Style.cs: Implemented FillStyleAttributes, GetStyleAttributes and
  45. SetDirty.
  46. 2005-08-26 Chris Toshok <[email protected]>
  47. * Unit.cs: implement the 2.0 ToString(IFormatProvider) method.
  48. * FontUnit.cs: add two 2.0 ctors, and the 2.0
  49. ToString(IFormatProvider) method.
  50. 2005-08-26 Sebastien Pouliot <[email protected]>
  51. * CheckListBox.cs: Nothing is rendered (i.e. no empty table) in 2.0 if
  52. no items are present in the list.
  53. * RoleGroup.cs: Added missing attributes.
  54. * RoleGroupCollection.cs: Added missing attributes and some (yet-to-be-
  55. documented) methods.
  56. * TableStyle.cs: *for 2.0* adding a "url({0})" to background image
  57. must be done in the HtmlTextWriter (not in the TableStyle).
  58. 2005-08-26 Chris Toshok <[email protected]>
  59. * Calendar.cs (UseAccessibleHeader): implement.
  60. (RaisePostBackEvent): some #ifdef ugliness to get this all working
  61. propertly between 1.x and 2.0
  62. (WriteDayHeader): if UseAccessibleHeader == true, render header
  63. cells as th's, not td's, and add abbr and scope attributes.
  64. 2005-08-25 Chris Toshok <[email protected]>
  65. * Calendar.cs (Caption, CaptionAlign): implement these properties.
  66. (Render): if we have a non-empty caption, show it.
  67. (WriteCaption): new method, output the caption.
  68. 2005-08-25 Chris Toshok <[email protected]>
  69. * Calendar.cs (Render): Copy the entire style from the Calendar to
  70. the Table, not just the font.
  71. (WriteDay): don't just write the link/text/etc. Create a
  72. LiteralControl as a child of the cell, before the call to
  73. OnDayRender, with its text set to the day number. After
  74. OnDayRender, set the literal's text to either the number again (if
  75. it's not selectable) or the full text of the js __doPostBack
  76. hyperlink (if it is.) Also, use cell.RenderControl here so we can
  77. render child controls with the id's listed properly (and arguably
  78. incorrectly).
  79. (ApplyTitleStyleCell): remove.
  80. (WriteTitle): apply the titleStyle to the enclosing table, not the
  81. table cell containing the month name. Also, copy from the
  82. Calendar's ControlStyle to populate tableTitle's style initially.
  83. We end up with more (superfluous) style attributes than MS, but
  84. it's better than having less.
  85. 2005-08-25 Sebastien Pouliot <[email protected]>
  86. * HyperLink.cs: Fixed 2.0 rendering for Alt and Border|BorderWidth when
  87. an image is used.
  88. 2005-08-25 Peter Dennis Bartok <[email protected]>
  89. * Style.cs: Implemented 2.0 CopyTextStylesFrom(), SetRegisteredCssClass()
  90. and RegisteredCssClass property
  91. 2005-08-25 Sebastien Pouliot <[email protected]>
  92. * LoginView.cs: Fixed attributes.
  93. * Style.cs: Change SetRegisteredCssClass to internal and not to throw
  94. an exception to allow pages to work on 2.x.
  95. 2005-08-25 Chris Toshok <[email protected]>
  96. * LinkButton.cs (PostBackUrl): correct the UrlProperty attribute.
  97. * Unit.cs: add [Serializable] and the 2.0 specific ToString(), not
  98. yet implemented.
  99. * HiddenField.cs: stub out this class and label everything
  100. MonoTODO.
  101. 2005-08-25 Jackson Harper <[email protected]>
  102. * DataGrid.cs: Disable the pager row if there no paging enabled
  103. or available.
  104. 2005-08-25 Chris Toshok <[email protected]>
  105. * SqlDataSourceFilteringEventArgs.cs: add some usings, and fix a
  106. typo.
  107. * SqlDataSourceSelectingEventArgs.cs: IDbCommand -> DbCommand, and
  108. add a using statement.
  109. 2005-08-25 Chris Toshok <[email protected]>
  110. * SqlDataSourceFilteringEventArgs.cs: new 2.0 class, as per
  111. corcompare.
  112. * SqlDataSourceFilteringEventHandler.cs: new 2.0 delegate, as per
  113. corcompare.
  114. 2005-08-25 Sebastien Pouliot <[email protected]>
  115. * Login.cs: Added rendering and fixed parts of the authentication.
  116. Now using IStateManager to allow compilation in another assembly (e.g.
  117. to test the control under IIS). Needs more tests (error conditions)
  118. once we get a "real" Membership provider running.
  119. * Style.cs: Fixed IsStyleEmpty (name ;-) and when null is provided
  120. (returns true).
  121. 2005-08-25 Chris Toshok <[email protected]>
  122. * SqlDataSourceCommandType.cs: new 2.0 enum, as per corcompare.
  123. 2005-08-25 Chris Toshok <[email protected]>
  124. * AdRotator.cs: stub out enough of the 2.0 methods/properties by
  125. calling base.Foo to get the standalone adrotator (1.0) tests to
  126. run without throwing exceptions.
  127. 2005-08-25 Chris Toshok <[email protected]>
  128. * ValidationSummary.cs (ValidationGroup): implement.
  129. (Render): use Page.GetValidators in .net 2.0, so we can support
  130. ValidationGroups. Also, <br>'s get rendered as <br /> in .net
  131. 2.0.
  132. 2005-08-25 Chris Toshok <[email protected]>
  133. * ImageButton.cs (TagKey): disable (but flag) the "virtual new"
  134. 2.0 attribute modifiers, and revert back to "override".
  135. * ListBox.cs (BorderColor): disable (but flag) the "virtual new"
  136. 2.0 attribute modifiers, and revert back to "override".
  137. (BorderStyle): same.
  138. (BorderWidth): same.
  139. * TextBox.cs (SaveViewState): implement naively, calling
  140. base.SaveViewState.
  141. (TagKey): disable (but flag) the "virtual new" 2.0 attribute
  142. modifiers, and revert back to "override".
  143. 2005-08-25 Peter Dennis Bartok <[email protected]>
  144. * Style.cs, TableStyle.cs, TableItemStyle.cs, DataGridPagerStyle.cs:
  145. Load ViewState for derived classes; no public LoadViewState override
  146. exists in those classes
  147. * Style.cs: Added 2.0 IsStyleEmpty method
  148. 2005-08-25 Jackson Harper <[email protected]>
  149. * DataGrid.cs: The number of pages set in the pager is specified
  150. by PageButtonCount.
  151. 2005-08-25 Sebastien Pouliot <[email protected]>
  152. * LoginView.cs: New (2.0). Work in progress.
  153. 2005-08-24 Chris Toshok <[email protected]>
  154. * Button.cs, DetailsView.cs, FontInfo.cs, Style.cs, Xml.cs,
  155. Menu.cs, ObjectDataSource.cs, CheckBox.cs, RadioButton.cs,
  156. ListControl.cs, SiteMapPath.cs, BulletedList.cs,
  157. DataBoundControl.cs, ListItemCollection.cs, GridView.cs,
  158. Wizard.cs, TextBox.cs, CheckBoxList.cs, RadioButtonList.cs,
  159. PagedDataSource.cs, FormView.cs, AdRotator.cs, Repeater.cs,
  160. DropDownList.cs, MultiView.cs, HierarchicalDataBoundControl.cs,
  161. Calendar.cs, ListBox.cs, WebControl.cs, Literal.cs,
  162. ValidationSummary.cs, ImageButton.cs, LinkButton.cs, TreeView.cs:
  163. Add MonoTODO's for all things that throw NotImplementException.
  164. 2005-08-24 Sebastien Pouliot <[email protected]>
  165. * RoleGroup.cs: New (2.0). Complete implementation.
  166. * RoleGroupCollection.cs: New (2.0). Mostly complete implementation.
  167. 2005-08-23 Chris Toshok <[email protected]>
  168. * BaseCompareValidator.cs (GetFullYear): it turns out the docs up
  169. on msdn.microsoft.com tell exactly how the .net 2.0 stuff works,
  170. even though they were written for the 1.0 stuff.
  171. 2005-08-23 Chris Toshok <[email protected]>
  172. * RepeatInfo.cs: some massaging to support both the 1.x and 2.0
  173. output. Our tests now pass on both mono and ms, with both 1.x and
  174. 2.0 profiles.
  175. 2005-08-23 Sebastien Pouliot <[email protected]>
  176. * Login.cs: Throw exception if the specified provider doesn't exists.
  177. * LoginStatus.cs: Complete events.
  178. 2005-08-22 Jackson Harper <[email protected]>
  179. * DataGrid.cs (CreateControlHierarchy): Clear out the old pager after creating the
  180. controls.
  181. (InitializeNumericPager): Now that the pager actually renders
  182. properly I can see that I was computing it incorrectly.
  183. 2005-08-22 Jackson Harper <[email protected]>
  184. * DataGrid.cs (RenderTable): Make sure the new table gets the
  185. correct style.
  186. (CreateColumnSet): Clear the data source columnbs before adding
  187. new ones regardless of whether or not a property descriptor was
  188. found.
  189. (InitializePager): pager_cell needs to be a member so it isn't
  190. created more then once per a render.
  191. (InitializeNumericPager): Compute start and end more
  192. correctly.
  193. - Link commands are 1 indexed.
  194. (CreateControlHierarchy): Clear the table before we begin
  195. rendering.
  196. - Revert patch that made adding the pagers conditional. This is
  197. incorrect, the pagers are always added. Only their visibility is
  198. affected by the pager style.
  199. - Save the entire count in the viewstate, not just the rendered
  200. count. So when paging is enabled the pager's count isn't broken by
  201. postback.
  202. 2005-08-22 Chris Toshok <[email protected]>
  203. * LinkButton.cs (ValidationGroup): implement.
  204. (IPostBackEventHandler.RaisePostBackEvent): in the 2.0 profile,
  205. pass ValidationGroup to Page.Validate.
  206. 2005-08-22 Chris Toshok <[email protected]>
  207. * ImageButton.cs (ValidationGroup): implement.
  208. (IPostBackEventHandler.RaisePostBackEvent): if we cause
  209. validation, call Page.Validate properly (in both profiles).
  210. 2005-08-22 Chris Toshok <[email protected]>
  211. * Button.cs (IPostBackEventHandler.RaisePostBackEvent): in the 2.0
  212. case, pass ValidationGroup to Page.Validate.
  213. (ValidationGroup): implement using ViewState.
  214. 2005-08-22 Chris Toshok <[email protected]>
  215. * BaseValidator.cs (Text): 2.0 only. implement naively, just
  216. get/set base.Text.
  217. (OnInit): add 2.0 support for validation groups.
  218. (OnUnload): same.
  219. 2005-08-22 Sebastien Pouliot <[email protected]>
  220. * LoginName.cs: New (2.0) web control.
  221. * LoginStatus.cs: New (2.0) web control.
  222. 2005-08-19 Chris Toshok <[email protected]>
  223. * LinkButton.cs (ValidationGroup): implement getter/setter.
  224. (RaisePostBackEvent): implement naively, by c&p'ing the old
  225. implementation of IPostBackEventHandler.RaisePostBackEvent, but
  226. making use of the ValidationGroup in the call to Page.Validate.
  227. * Button.cs: same.
  228. * Style.cs (LoadViewState): set our style flags for all the things
  229. we have flags for. Seems like the subclass flags should be
  230. handled in overridden LoadViewState methods, but none of the Style
  231. subclasses seem to override this method.
  232. 2005-08-19 Chris Toshok <[email protected]>
  233. * TableStyle.cs (Merge, MergeWith): make these look a bit more
  234. like Copy/CopyFrom, with the styles checks instead of just
  235. ViewState checks.
  236. * TableItemStyle.cs: same, only also make Copy/CopyFrom work as in
  237. TableStyle.cs.
  238. 2005-08-19 Chris Toshok <[email protected]>
  239. * DataGrid.cs (InitializePager): don't unconditionally set
  240. pager_cell to the numeric pager (especially after setting it
  241. conditionally to the nextprev pager.)
  242. (InitializeNumericPager): the link buttons don't participate in
  243. validation.
  244. (InitializeNextPrevPager): same.
  245. (CreateControlHierarchy): create the top/bottom pagers only if the
  246. PagerStyle says too.
  247. 2005-08-19 Sebastien Pouliot <[email protected]>
  248. * TableCell.cs: Added AssociatedHeaderCellID property for 2.0.
  249. 2005-08-18 Chris Toshok <[email protected]>
  250. * DataList.cs (CreateControlHierarchy): Call Controls.Clear() at
  251. the start of this method so templates are created properly.
  252. 2005-08-18 Dick Porter <[email protected]>
  253. * Button.cs, DetailsView.cs, Xml.cs, Table.cs, Menu.cs,
  254. DataControlButton.cs, Label.cs, ObjectDataSource.cs, CheckBox.cs,
  255. RadioButton.cs, ListControl.cs, Image.cs, SiteMapPath.cs,
  256. BaseDataList.cs, DataList.cs, BulletedList.cs,
  257. DataBoundControl.cs, Login.cs, GridView.cs,
  258. CompositeDataBoundControl.cs, Wizard.cs, BaseValidator.cs,
  259. TextBox.cs, CheckBoxList.cs, RadioButtonList.cs, FormView.cs,
  260. AdRotator.cs, Repeater.cs, MenuItemTemplateContainer.cs,
  261. DropDownList.cs, HyperLink.cs, ImageMap.cs, MultiView.cs,
  262. CompositeControl.cs, HierarchicalDataBoundControl.cs, Calendar.cs,
  263. ListBox.cs, TableCell.cs, WebControl.cs, Literal.cs,
  264. BaseDataBoundControl.cs, ValidationSummary.cs, ImageButton.cs,
  265. LinkButton.cs, TreeView.cs: 2.0 API fixes and stubs, and attribute
  266. fixes
  267. 2005-08-18 Sebastien Pouliot <[email protected]>
  268. * BaseDataList.cs: Added a TODO for DataKeyField as we're not using it
  269. anywhere...
  270. * DataList.cs: Reworked CreateControlHierarchy to avoid allocating an
  271. empty array of objects just to get the number of items.
  272. * Login.cs: Implemented OnBubbleEvent and parts of the authentication
  273. but we're missing some bits from the class lib to complete all this...
  274. 2005-08-17 Jackson Harper <[email protected]>
  275. * DataGrid.cs: Only create one pager and add it to both the top
  276. and bottom of the grid, this way all the id numbers stay the same
  277. and we save a bunch of cycles.
  278. 2005-08-17 Jackson Harper <[email protected]>
  279. * DataGrid.cs: The top and bottom pagers are always created. Just
  280. the visibility is changed by the PagerStyle::Position.
  281. 2005-08-17 Chris Toshok <[email protected]>
  282. * CompositeControl.cs (RecreateChildControls): implement naively -
  283. just call CreateChildControls. We might need to call
  284. Controls.Clear() as well, but for the time being, this is ok.
  285. 2005-08-17 Sebastien Pouliot <[email protected]>
  286. * BaseDataList.cs: Completed implementation for 2.0.
  287. 2005-08-16 Sebastien Pouliot <[email protected]>
  288. * BaseDataList.cs: Added missing properties/methods/attributes for 2.0.
  289. * DataList.cs: Added missing [Browseable] attribute on SelectedValue.
  290. 2005-08-16 Sebastien Pouliot <[email protected]>
  291. * BaseDataList.cs: Removed old internal ctor as DataList TagKey was
  292. fixed for 2.0.
  293. * DataList.cs: Implemented {Load|Save}ControlState and OnInit (2.0).
  294. Adjusted size and ordering of the ViewState (new element #0 is still
  295. unknown). Properly fixed the TagKey in 2.0.
  296. * Login.cs: Implemented {Load|Save|Track}ViewState. Added checks for
  297. all properties using enums.
  298. * Panel.cs: Fixed NoWrap rendering unit test (for 2.0).
  299. * TableItemStyle.cs: Fixed attribute rendering to use style to render
  300. "nowrap" in 2.0 (it used the HTML nowrap attribute in 1.x).
  301. 2005-08-15 Jackson Harper <[email protected]>
  302. * EditCommandColumn.cs: Use a normal LinkButton.
  303. 2005-08-15 Sebastien Pouliot <[email protected]>
  304. * Image.cs: Don't remove GenerateEmptyAlternateText (2.0) from the
  305. viewstate (even if assigned to the default value).
  306. * TableRow.cs: Implement TableSection property (2.0). It has no effect
  307. on the rendering of the table row.
  308. 2005-08-15 Sebastien Pouliot <[email protected]>
  309. * BaseDataList.cs: Added new [Themeable] and [Localizable] attributes
  310. and removed [Bindable] attributes for 2.0.
  311. * DataList.cs: Added new 2.0 attributes on class and removed [Bindable]
  312. attributes (for 2.0).
  313. * DataListCommandEventArgs.cs: Not sealed in 2.0.
  314. * DataListItemEventArgs.cs: Not sealed in 2.0.
  315. * Image.cs: Fixed [Designer] attribute on class and all [Editor]
  316. attributes for URLs.
  317. * Login.cs: Fixed [Designer] attribute on class and all [Editor]
  318. attributes for URLs.
  319. * Table.cs: Fixed [Editor] attribute for 2.0.
  320. * TableCellCollection.cs: Fixed [Editor] attribute for 2.0.
  321. * TableCell.cs: Fixed [Designer] attribute. Fixed property name for
  322. AssociatedHeaderCellID and it's [DefaultValue] attribute.
  323. * TableHeaderCell.cs: Fix [DefaultValue] attributes for CategoryText
  324. and Scope attributes.
  325. * TableRow.cs: Fixed [Designer] attribute. Added missing [DefaultValue]
  326. on TableSection attribute.
  327. * TableRowCollection.cs: Fixed [Editor] attribute for 2.0.
  328. 2005-08-14 Sebastien Pouliot <[email protected]>
  329. * Image.cs: Fixed attributes for 2.0 profile.
  330. * Login.cs: Fixed some attributes and default values.
  331. * Table.cs: Fixed attributes for 2.0 profile. Added protected method
  332. RaisePostBackEvent (TODO) in 2.0 profile.
  333. * TableCell.cs: Fix properties (Bindable, Localizable, Designer...)
  334. and added AssociateHeaderCellID property (TODO).
  335. * TableCellCollection.cs: Fixed [Editor] attribute for 2.0.
  336. * TableFooterRow.cs: New (2.0). TableRow that always shows on each
  337. page (if the device requires to breaks the table into multiple pages).
  338. This seems to be a "flag" class, the real work will be in Table.
  339. * TableHeaderCell.cs: Added CategoryText and Scope properties for 2.0.
  340. * TableHeaderRow.cs: New (2.0). TableRow that always shows on each
  341. page (if the device requires to breaks the table into multiple pages).
  342. This seems to be a "flag" class, the real work will be in Table.
  343. * TableItemStyle.cs: Remove [Bindable (true)] from 2.0 profile.
  344. * TableRow.cs: Remove [Bindable (true)] from properties and add
  345. [Bindable (false)] and [Designer] on class. Added new TableSection
  346. property (TODO).
  347. * TableRowCollection.cs: Fixed [Editor] attribute for 2.0.
  348. * TableSectionStyle.cs: New (2.0). Add Visible to Style - but it's
  349. broken (int beta2) for IsEmpty, CopyFrom, MergeWith...
  350. * TableStyle.cs: Fixed attributes for 2.0 profile. Added new
  351. FillStyleAttributes method (2.0).
  352. 2005-08-13 Sebastien Pouliot <[email protected]>
  353. * Login.cs: New (2.0). Mostly a stub with copy-n-pasted code and
  354. attributes from existing controls.
  355. * LoginCancelEventArgs.cs: New (2.0). Required to build Login.
  356. * LoginCancelEventHandler.cs: New (2.0). Required to build Login.
  357. 2005-08-12 Jackson Harper <[email protected]>
  358. * TableRow.cs: No AutoID for TableRows.
  359. 2005-08-12 Jackson Harper <[email protected]>
  360. * DataGrid.cs (CreateRenderColumns): If we aren't using data
  361. binding grab the rendercols from the data source columns.
  362. (LoadViewState): Restore the bound columns when reloading the
  363. viewstate.
  364. (InitializeNumericPager): Create elipsised pagers.
  365. (CreateItem): Don't set the item's ID.
  366. (CreateItem): Add the control to the table before it is databound
  367. so that it's value is saved in the viewstate.
  368. (CreateControlHierarchy): Create a fake data source when not using
  369. databinding. Don't add controls to the table as they are added in
  370. CreateItem now.
  371. (PrepareControlHierarchy): Make footers and header non visible if
  372. they aren't enabled.
  373. 2005-08-12 Chris Toshok <[email protected]>
  374. * CompositeControl.cs (DataBind, Render, get_Controls): the MSDN
  375. docs says these methods/properties "ensure the child controls are
  376. created" -- so call EnsureChildControls() before invoking the base
  377. class's code.
  378. 2005-08-12 Jackson Harper <[email protected]>
  379. * BoundColumn.cs: Set the controls text instead of adding a
  380. literal control. So it is saved in the controls viewstate.
  381. 2005-08-11 Jackson Harper <[email protected]>
  382. * CheckBoxList.cs: Set the tabindex on the checkbox control and
  383. don't render it on the main table (Setting it to zero causes it to
  384. not be rendered). Also use the invariant culture on the id.
  385. 2005-08-11 Dick Porter <[email protected]>
  386. * CheckBox.cs: Let ViewState manage removals; apply styles and
  387. "style" attributes in a surrounding <span>. Fixes unit tests.
  388. 2005-08-10 Chris Toshok <[email protected]>
  389. * Label.cs (LoadViewState): set the Text attribute from our
  390. ViewState (if it exists) to clear out any child controls. Fixes
  391. jsunit test label/label-child-control-postback.aspx.
  392. 2005-08-10 Jackson Harper <[email protected]>
  393. * PagedDataSource.cs: Respect paging with all data source types.
  394. 2005-08-09 Sebastien Pouliot <[email protected]>
  395. * BaseDataList.cs: Changed Controls property from "virtual new"
  396. (2.0 doc) to "override" (monop) to fix the Visible bug (see
  397. datalist-invisible.aspx). Fixed AddParsedSubObject not to accept
  398. any controls (required due to change to Controls). Implemented
  399. DataBind(bool) for 2.0.
  400. * DataListItem.cs: Fix the multiple table when extractRows is used.
  401. Removed extra span tags by rendering contents (not control). Added
  402. support for IDataItemContainer (2.0).
  403. 2005-08-08 Jackson Harper <[email protected]>
  404. * DataGrid.cs: Apply the styles to each item type.
  405. 2005-08-08 Jackson Harper <[email protected]>
  406. * PagedDataSource.cs: If paging is not enabled keep enumerating to
  407. the end of the list.
  408. 2005-08-08 Sebastien Pouliot <[email protected]>
  409. * BaseDataList.cs: Remove old compatibility stuff.
  410. * DataList.cs: Fix the edit|update for datalist-style-edit.aspx.
  411. * WebControl.cs: Always call CreateControlStyle to create the
  412. ControlStyle. Fix the exception for datalist-style-edit.aspx.
  413. 2005-08-05 Jackson Harper <[email protected]>
  414. * DataGrid.cs: Don't make the current page index a link in the
  415. pager.
  416. 2005-08-05 Jackson Harper <[email protected]>
  417. * DataGrid.cs: Honour PagerPosition.
  418. 2005-08-05 Jackson Harper <[email protected]>
  419. * PagedDataSource.cs: Round PageCount properly.
  420. 2005-08-05 Dick Porter <[email protected]>
  421. * CheckBox.cs: Shut corcompare up a bit more. Still need to
  422. figure out how to not use AddAttributesToRender to get it
  423. completely silent.
  424. * ButtonColumn.cs: Implement Initialize() and InitializeCell()
  425. * DataGridColumn.cs: Added the duplicate viewstate manipulation
  426. methods
  427. 2005-08-05 Chris Toshok <[email protected]>
  428. * HyperLinkColumn.cs (FormatDataNavigateUrlValue): treat "" as
  429. null when it comes to the format string.
  430. (FormatDataTextValue): same.
  431. 2005-08-04 Chris Toshok <[email protected]>
  432. * BaseValidator.cs (Validate): only test a validator if it's both
  433. enabled and visible.
  434. 2005-08-04 Chris Toshok <[email protected]>
  435. * BaseValidator.cs (AddAttributesToRender): add "enabled" if
  436. !Enabled.
  437. 2005-08-04 Jackson Harper <[email protected]>
  438. * DataGrid.cs: Add a new space control for each link. Also make
  439. the link's text 1 indexed. Don't add the space after the last
  440. item.
  441. 2005-08-04 Ben Maurer <[email protected]>
  442. * LinkButton.cs: Fix up the test suite here.
  443. * Panel.cs: Fix up nowrap
  444. 2005-08-04 Peter Dennis Bartok <[email protected]>
  445. * ListBox.cs: Use WriteXXXX to render HTML, this way it matches MS output
  446. * ListControl.cs: Clear item list before adding data (again)
  447. 2005-08-04 Jordi Mas i Hernandez <[email protected]>
  448. * Calendar.cs: fixes issues with OnDayRender event and others
  449. 2005-08-04 Peter Dennis Bartok <[email protected]>
  450. * DataGrid.cs(CreateControlHierarchy): Consider the EditItemIndex when
  451. creating rows
  452. * ListControl.cs(OnDataBinding): Only apply DataTextFormatString to text
  453. if DataTextField is bound
  454. * EditCommandColumn.cs(InitializeCell): MS inserts a &nbsp; between the
  455. two controls in edit mode, lets do the same
  456. 2005-08-03 Jackson Harper <[email protected]>
  457. * BoundColumn.cs: Respek for the thisExpr when data binding.
  458. 2005-08-03 Peter Dennis Bartok <[email protected]>
  459. * EditCommandColumn.cs: No need to offer edit when in edit mode.
  460. Flipped output
  461. 2005-08-04 Dick Porter <[email protected]>
  462. * DataGridColumn.cs: New implementation
  463. * DataGrid.cs:
  464. * DataGridColumnCollection.cs: Set the DataGridColumn's owner
  465. 2005-08-03 Peter Dennis Bartok <[email protected]>
  466. * WebControl.cs(CopyBaseAttributes): Use Enabled setter to also
  467. set tracking var
  468. 2005-08-03 Ben Maurer <[email protected]>
  469. * RepeatInfo.cs: Finally figured out how to use base control
  470. 2005-08-03 Jackson Harper <[email protected]>
  471. * ButtonColumn.cs: Partial implementation.
  472. 2005-08-03 Peter Dennis Bartok <[email protected]>
  473. * DataGridPagerStyle.cs(PageButtonCount): Throw exception on
  474. negative value
  475. 2005-08-03 Jordi Mas i Hernandez <[email protected]>
  476. * Calendar.cs: fixes Save/Load state
  477. 2005-08-03 Jordi Mas i Hernandez <[email protected]>
  478. * Calendar.cs: bug fixes
  479. 2005-08-03 Jackson Harper <[email protected]>
  480. * DataGrid.cs: Merge the table style with the render table. Some
  481. initial work on the numeric pager. Remove some debugging code.
  482. 2005-08-03 Jackson Harper <[email protected]>
  483. * BoundColumn.cs: Implement Initialize and InitializeCell. When
  484. Data is formated it uses the DataFormatString that was set at the
  485. time Initialize was called (or null if initialize was never
  486. called).
  487. 2005-08-02 Jordi Mas i Hernandez <[email protected]>
  488. * RadioButtonList.cs: bug fixes
  489. 2005-08-02 Jordi Mas i Hernandez <[email protected]>
  490. * CheckBox.cs, RadioButton.cs: mecanism to avoid exposing
  491. AddAttributesToRender
  492. * RadioButtonList.cs: Implementation
  493. 2005-08-01 Jackson Harper <[email protected]>
  494. * TableStyle.cs: Copy style bit when copying from another style.
  495. 2005-08-01 Jackson Harper <[email protected]>
  496. * PagedDataSource.cs: Implement missing properties, use yield for
  497. the Enumerator methods. Only allow the enums to return one page at
  498. a time.
  499. 2005-08-01 Chris Toshok <[email protected]>
  500. * HyperLinkColumn.cs (ItemDataBinding): remove incorrect comment.
  501. 2005-08-01 Peter Dennis Bartok <[email protected]>
  502. * WebControl.cs: Track enabled state across sessions
  503. 2005-08-01 Peter Dennis Bartok <[email protected]>
  504. * ListControl.cs(OnDatabinding): Value is equivalent to text if
  505. by default
  506. 2005-08-01 Jordi Mas i Hernandez <[email protected]>
  507. * ImageButton.cs: fixes, complete missing parts
  508. 2005-07-31 Ben Maurer <[email protected]>
  509. * TextBox.cs: Html encode for multiline text boxes
  510. * HyperLink.cs: Resolve images
  511. 2005-07-30 Chris Toshok <[email protected]>
  512. * BaseValidator.cs: initial version of 2.0 properties
  513. ValidationGroup and SetFocusOnError.
  514. 2005-07-30 Chris Toshok <[email protected]>
  515. * HyperLinkColumn.cs (InitializeCell): clean this up.
  516. 2005-07-30 Chris Toshok <[email protected]>
  517. * HyperLinkColumn.cs (FormatDataNavigateUrlValue): just use
  518. DataBinder.FormatResult.
  519. (FormatDataTextValue): same.
  520. (Initialize): call base.Initialize.
  521. (ItemDataBinding): new function, get the text/navigateurl and set
  522. them on our HyperLink control.
  523. (InitializeCell): create a hyperlink control in the
  524. Item/EditItem/AlternatingItem case.
  525. 2005-07-30 Ben Maurer <[email protected]>
  526. * RepeatInfo.cs: Handle 0 items situations correctly
  527. * HyperLink.cs: Resolve urls correctly
  528. * CheckBox.cs: use the correct ID for the label element.
  529. * Label.cs: Correct AddParsedSubObject impl. See FAQ
  530. 2005-07-29 Chris Toshok <[email protected]>
  531. * BaseCompareValidator.cs (GetDateElementOrder): implement.
  532. 2005-07-29 Chris Toshok <[email protected]>
  533. * BaseCompareValidator.cs (GetFullYear): implement two ways. The
  534. #if'ed out version follows microsoft's docs on msdn, but doesn't
  535. match ms's behavior. The other matches their behavior but not
  536. their docs. we use the latter. go figure.
  537. (get_CutoffYear): implement using
  538. CultureInfo.CurrentCulture.Calendar.TwoDigitYearMax.
  539. 2005-07-27 Peter Dennis Bartok <[email protected]>
  540. * FontInfo.cs:
  541. - Name property now throws exception when set to null
  542. - Names now handles situation where our bit tells us we have
  543. a font, but it's not in the StateBag (null removal)
  544. * RangeValidator.cs: Removed unused vars
  545. 2005-07-29 Ben Maurer <[email protected]>
  546. * Label.cs: ClientID should be used rather than UniqueID to get
  547. the For attribute
  548. 2005-07-29 Chris Toshok <[email protected]>
  549. * BaseValidator.cs (Validatate): not sure if this is entirely
  550. correct (some fairly deep testing required), but setting Enabled =
  551. false has the effect of setting IsValid = true.
  552. 2005-07-29 Ben Maurer <[email protected]>
  553. * RadioButton.cs: The "remove from groupstate" isn't needed any
  554. more, now that statebag is correct.
  555. 2005-07-29 Dick Porter <[email protected]>
  556. * RadioButton.cs: Hide nonstandard API; remove GroupName from the
  557. ViewState when it is null.
  558. * CheckBox.cs: Hide nonstandard API
  559. 2005-07-29 Jordi Mas i Hernandez <[email protected]>
  560. * Calendar.cs: fixes exceptions, bug fixes, new features
  561. * SelectedDatesCollection.cs: Fixes bugs discovered by the tests
  562. * CalendarDay.cs: fixes default value
  563. 2005-07-28 Ben Maurer <[email protected]>
  564. * CompositeControl.cs: Stub
  565. 2005-07-27 Peter Dennis Bartok <[email protected]>
  566. * EditCommandColumn.cs: Implemented
  567. 2005-07-27 Chris Toshok <[email protected]>
  568. * RegularExpressionValidator.cs (EvaluateIsValid): "" is valid.
  569. 2005-07-27 Peter Dennis Bartok <[email protected]>
  570. * CustomValidator.cs: Bug fixes (Thanks to Chris for creating the
  571. client side code)
  572. 2005-07-27 Peter Dennis Bartok <[email protected]>
  573. * DataGrid.cs: DataGridPagerStyle does not need DataGrid as argument
  574. for it's constructor, so remove it
  575. * DataGridPagerStyle.cs: Removed DataGrid argument from constructor
  576. 2005-07-27 Peter Dennis Bartok <[email protected]>
  577. * DataGridPagerStyle.cs: Implemented
  578. * TableItemStyle.cs (MergeWith): Now only sets style bits it owns
  579. * Style.cs: Added Styles enum values for DataGridPagerStyle
  580. 2005-07-27 Jordi Mas i Hernandez <[email protected]>
  581. * Calendar.cs: get the styles right, honors more properties, fixes, fix
  582. var names style
  583. 2005-07-26 Peter Dennis Bartok <[email protected]>
  584. * DataGridItem.cs: Implemented
  585. 2005-07-26 Chris Toshok <[email protected]>
  586. * LinkButton.cs (AddParsedSubObject): reversed the order of
  587. Controls.Add() and Text = null
  588. (set_Text): call Controls.Clear()
  589. (RenderContents): use HasControls() for the if test instead of
  590. Text != "".
  591. * HyperLink.cs (AddParsedSubObject): reversed the order of
  592. Controls.Add () and Text = null;
  593. 2005-07-26 Peter Dennis Bartok <[email protected]>
  594. * DataGridItemCollection.cs: Implemented
  595. 2005-07-26 Chris Toshok <[email protected]>
  596. * LinkButton.cs (AddParsedSubObject): copy implementation from
  597. HyperLink.
  598. (RenderContents): only call writer.Write(Text) if Text != "".
  599. Otherwise default to base.RenderContents.
  600. 2005-07-26 Chris Toshok <[email protected]>
  601. * Button.cs, CheckBox.cs, TextBox.cs, DropDownList.cs, ListBox.cs,
  602. ImageButton.cs, LinkButton.cs (AddAttributesToRender): add if
  603. (Page != null) around my last commit.
  604. 2005-07-26 Peter Dennis Bartok <[email protected]>
  605. * FontInfo.cs, CheckBox.cs, RadioButton.cs, ListItemCollection.cs:
  606. Fixed use of literal strings, instead using Consts
  607. * Xml.cs, RegularExpressionValidator.cs, TemplateColumn.cs,
  608. TextBox.cs, RequiredFieldValidator.cs, Repeater.cs, RepeaterItem.cs,
  609. Panel.cs, Literal.cs: Added attributes
  610. * BaseValidator.cs: Added missing override
  611. 2005-07-26 Chris Toshok <[email protected]>
  612. * Button.cs, CheckBox.cs, TextBox.cs, DropDownList.cs, ListBox.cs,
  613. ImageButton.cs, LinkButton.cs (AddAttributesToRender): call
  614. Page.VerifyRenderingInServerFormHere.
  615. 2005-07-26 Chris Toshok <[email protected]>
  616. * BaseValidator.cs: remove some MonoTODO's about the client side
  617. validator stuff.
  618. 2005-07-26 Jordi Mas i Hernandez <[email protected]>
  619. * Calendar.cs: selection of dates, state load, save, track, support
  620. for new properties, many fixes.
  621. 2005-07-26 Miguel de Icaza <[email protected]>
  622. * Style.cs: Temporary methods to help buliding .NET 2.x
  623. 2005-07-25 Peter Dennis Bartok <[email protected]>
  624. * BaseValidator.cs: Added AssociateControlID (new in sp1), fixed
  625. attributes
  626. * Xml.cs: Fixed base class, attributes
  627. * Button.cs, DataGridColumnCollection.cs, HyperLinkColumn.cs,
  628. Label.cs, ListItem.cs, ListControl.cs, CustomValidator.cs,
  629. CheckBoxList.cs, AdRotator.cs, DropDownList.cs, HyperLink.cs,
  630. DataGrid.cs, ButtonColumn.cs, CompareValidator.cs, Calendar.cs,
  631. ListBox.cs, ImageButton.cs, LinkButton.cs: Attribute fixes
  632. 2005-07-25 Ben Maurer <[email protected]>
  633. * RepeatInfo.cs: WOOHOOO! all tests pass. Boy is this class
  634. cracktastic.
  635. 2005-07-25 Ben Maurer <[email protected]>
  636. * RepeatInfo.cs: If the repeater has one column, the separators
  637. are rendered on a different line
  638. 2005-07-25 Peter Dennis Bartok <[email protected]>
  639. * DataGridSortCommandEventArgs: Sealed class
  640. * ButtonColumn.cs, Calendar.cs: Added Attributes
  641. 2005-07-25 Peter Dennis Bartok <[email protected]>
  642. * Button.cs, Style.cs, BaseCompareValidator.cs, RangeValidator.cs,
  643. BaseValidator.cs, AdRotator.cs, BoundColumn.cs: Added Attributes
  644. 2005-07-25 Peter Dennis Bartok <[email protected]>
  645. * FontInfo.cs, Style.cs, RangeValidator.cs, ListItemCollection.cs,
  646. DropDownList.cs, WebControl.cs, ValidationSummary.cs: Added Attributes
  647. 2005-07-25 Chris Toshok <[email protected]>
  648. * ValidationSummary.cs (AddAttributesToRender): add client side
  649. support.
  650. (OnPreRender): set the "been here" flag.
  651. (Render): add client side support.
  652. 2005-07-25 Ben Maurer <[email protected]>
  653. * RepeatInfo.cs: Split the horiz and vertical cases, because this
  654. class has rules that are beyond strange. Continue working to make
  655. my tests work.
  656. 2005-07-25 Ben Maurer <[email protected]>
  657. * RepeatInfo.cs: Misc fixes for my test suite.
  658. 2005-07-25 Jackson Harper <[email protected]>
  659. * DataGrid.cs: Set the command name and args on the link buttons.
  660. 2005-07-25 Jackson Harper <[email protected]>
  661. * DataGrid.cs: Lots o implementation.
  662. 2005-07-25 Jackson Harper <[email protected]>
  663. * BoundColumn.cs: Partial implementation to get the DataGrid tests
  664. passing again.
  665. 2005-07-23 Jordi Mas i Hernandez <[email protected]>
  666. * Button.cs: fixes events, adds attributes
  667. 2005-07-23 Chris Toshok <[email protected]>
  668. * BaseValidator.cs (GetControlValidateValue): handle ListItems as
  669. prop.GetValue results.
  670. (Render): fix the static non-uplevel case, so that we display text
  671. when there's an error.
  672. 2005-07-22 Chris Toshok <[email protected]>
  673. * RegularExpressionValidator.cs (AddAttributesToRender): only
  674. output ValidationExpression if it's != null.
  675. 2005-07-22 Chris Toshok <[email protected]>
  676. * BaseValidator.cs (AddAttributesToRender): fix up the Display
  677. rendering such it matches MS's output.
  678. (Render): stop using the huge complicated if's for each output
  679. stage and move to boolean flags, and fix the static-nonuplevel
  680. case, where a validator outputs as nothing but &nbsp;
  681. 2005-07-22 Jordi Mas i Hernandez <[email protected]>
  682. * Calendar.cs: Initial implementation
  683. * CalendarSelectionMode.cs: fix enum order
  684. 2005-07-22 Sebastien Pouliot <[email protected]>
  685. * DataList.cs: Rewrote the IRepeatInfoUser.RenderItem to support all
  686. (or more?) specific cases - including correct support for separators.
  687. Added some (commented) debugging code.
  688. * HyperLink.cs: Only render href and target attributes if they're not
  689. empty. Add "border=0" when rendering <img> tag. Fix Target default
  690. value.
  691. 2005-07-22 Peter Dennis Bartok <[email protected]>
  692. * Style.cs (CopyFrom): Reset must go, MS doesn't do it (See tests)
  693. 2005-07-22 Peter Dennis Bartok <[email protected]>
  694. * Style.cs (CopyFrom): Reset our styles and don't set bits from
  695. target explicitly, properties will set them
  696. 2005-07-22 Dick Porter <[email protected]>
  697. * BoundColumn.cs:
  698. * ButtonColumn.cs: Initial stubs
  699. 2005-07-22 Dick Porter <[email protected]>
  700. * RadioButton.cs:
  701. * CheckBox.cs: Add assembly attributes
  702. 2005-07-22 Ben Maurer <[email protected]>
  703. * HyperLink.cs: Handle non-literal children.
  704. 2005-07-21 Ben Maurer <[email protected]>
  705. * Label.cs: SP1 stuff
  706. 2005-07-21 Chris Toshok <[email protected]>
  707. * BaseValidator.cs (RegisterValidatorCommonScript): remove the NS4
  708. stuff that I c&p'ed from elsewhere - NS4 doesn't support the DOM1
  709. stuff WebUIValidation.js uses, so we don't support it for uplevel
  710. rendering.
  711. 2005-07-21 Chris Toshok <[email protected]>
  712. * BaseValidator.cs (DetermineRenderUplevel): include checks for
  713. the EcmaScriptVersion and W3CDomVersion.
  714. 2005-07-21 Sebastien Pouliot <[email protected]>
  715. * BaseDataList.cs: Support IEnumerable.
  716. * DataList.cs: Fix alternate items.
  717. * TableCell.cs: Fixed AddParsedSubObject to work nicely with existing
  718. controls and the Text property.
  719. 2005-07-21 Ben Maurer <[email protected]>
  720. * TextBoxMode.cs: Wrong ordering of enum...
  721. 2005-07-21 Chris Toshok <[email protected]>
  722. * BaseValidator.cs (OnPreRender): call DetermineRenderUplevel and
  723. cache the results.
  724. 2005-07-21 Chris Toshok <[email protected]>
  725. * BaseValidator.cs (get_PropertiesValid): use our containing
  726. NamingContainer, not ourselves, to look up controls.
  727. (CheckControlValidationProperty): same.
  728. (GetControlRenderID): same.
  729. (GetControlValidationValue): same.
  730. (AddAttributesToRender): add the display style attribute if
  731. Display != Static, and add the value of IsValid if it's false.
  732. (DetermineRenderUplevel): use a try block around (Page.Request)
  733. since that can raise an exception.
  734. (OnPreRender): set pre_render_called, so we can consult it in
  735. Render.
  736. (Render): complicate this method more to handle more of the
  737. Display/pre_render_called permutations.
  738. 2005-07-21 Peter Dennis Bartok <[email protected]>
  739. * CustomValidator.cs: Initial implementation, still work in progress
  740. 2005-07-21 Sebastien Pouliot <[email protected]>
  741. * DataList.cs: Fix rendering for special items (-1).
  742. 2005-07-21 Ben Maurer <[email protected]>
  743. * RepeatInfo.cs: Fix most of the tests.
  744. 2005-07-21 Sebastien Pouliot <[email protected]>
  745. * Image.cs: Call ResolveUrl for ImageUrl and DescriptionUrl properties.
  746. Add a border=0 attribute if no style is defined.
  747. * TableCell.cs: Use HtmlTextWriterTag (not a string).
  748. * TableHeaderCell.cs: Use HtmlTextWriterTag (not a string).
  749. * TableRow.cs: Use HtmlTextWriterTag (not a string).
  750. 2005-07-21 Sebastien Pouliot <[email protected]>
  751. * BaseDataList.cs: Fix attributes.
  752. * HorizontalAlign.cs: Fix attributes.
  753. * Image.cs: Fix attributes and enums checks.
  754. * Table.cs: Fix attributes an enums checks.
  755. * TableCell.cs: Fix attributes.
  756. * TableCellCollection.cs: Fix attributes.
  757. * TableItemStyle.cs: Fix attributes and enums checks.
  758. * TableRowCollection.cs: Fix attributes.
  759. * TableRow.cs: Fix attributes.
  760. * TableStyle.cs: Fix attributes and enums checks.
  761. * VerticalAlign.cs: Fix attributes.
  762. 2005-07-21 Sebastien Pouliot <[email protected]>
  763. * BaseDataList.cs: Remove/#if-out useless/2.0 stuff.
  764. * DataList.cs: Added rendering support when ExtractTemplatesRows
  765. property is true (but RepeatInfo needs to be fixed to see it works).
  766. * DataListItem.cs: Added rendering support when extractRows parameter
  767. is true (but RepeatInfo still needs to be fixed ;-)
  768. 2005-07-21 Duncan Mak <[email protected]>
  769. * HyperLinkColumn.cs: Initial implementation.
  770. Todo: Figure out Initialize and InitializeCell.
  771. 2005-07-20 Chris Toshok <[email protected]>
  772. * BaseValidator.cs: don't use Page.FindControl, use this Control's
  773. FindControl, so it'll use the same naming container.
  774. 2005-07-21 Duncan Mak <[email protected]>
  775. * DataGridCommandEventArgs.cs:
  776. * DataGridPageChangedEventArgs.cs:
  777. * RepeaterCommandEventArgs.cs: Fixed visibility.
  778. * DataGridPageChangedEventArgs.cs (CommandSource): Fixed typo.
  779. * DataGridSortCommandEventArgs.cs (CommandSource): Ditto..
  780. 2005-07-20 Chris Toshok <[email protected]>
  781. * Button.cs: hook up the client side validation stuff.
  782. * ImageButton.cs: same.
  783. * LinkButton.cs: same, although it's a little more complicated
  784. here.
  785. 2005-07-20 Peter Dennis Bartok <[email protected]>
  786. * DropDownList.cs:
  787. - Implemented RaisePostDataChangedEvent()
  788. - Spewing postback command if AutoPostBack is true
  789. 2005-07-20 Chris Toshok <[email protected]>
  790. * BaseValidator.cs: another Page != null check when uplevel
  791. rendering.
  792. 2005-07-20 Chris Toshok <[email protected]>
  793. * BaseValidator.cs: check Page != null when determining if we're
  794. rendering uplevel or not.
  795. 2005-07-20 Peter Dennis Bartok <[email protected]>
  796. * ListItemCollection.cs: Removed obsolete method that's no longer
  797. referenced
  798. 2005-07-20 Peter Dennis Bartok <[email protected]>
  799. * DropDownList.cs: Oops. Forgot to implement LoadPostData
  800. * ListItemCollection.cs: Added convenience method to have faster
  801. PostData handling
  802. 2005-07-20 Peter Dennis Bartok <[email protected]>
  803. * DropDownList.cs:
  804. - Automatically select the first item if none are selected
  805. - Throw exception if more than one item is selected
  806. 2005-07-20 Sebastien Pouliot <[email protected]>
  807. * DataList.cs: Fix style handling for RepeatLayout.Flow (which isn't
  808. handled by RepeatInfo).
  809. 2005-07-20 Jackson Harper <[email protected]>
  810. * DataGrid.cs: Store the data source created columns in a
  811. DataGridColumnCollection. This way they can be put in the
  812. view state more easily, and accessed without casting.
  813. 2005-07-20 Chris Toshok <[email protected]>
  814. * BaseValidator.cs (AddAttributesToRender): render the client side
  815. attributes if we're in uplevel mode.
  816. (DetermineRenderUplevel): flesh out a bit - for now basically
  817. return true unless the control has it disabled.
  818. (OnInit): only add the validator to Page's list if there is, in
  819. fact, a page.
  820. (OnUnload): same for removal.
  821. (OnPreRender): hook up client scripting stuff here. Only the call
  822. to RegisterValidatorCommonScript is a for sure thing here, the
  823. registering of the submit statement and startup script should
  824. probably go elsewhere, but I don't know where.
  825. (RegisterValidatorCommonScript): register the <script
  826. src=".../WebUIValidation.js"> tag, if it's not already there.
  827. (RegisterValidatorDeclaration): add our span object to the
  828. Page_Validators JS array.
  829. (Render): always render the tags (although this is probably not
  830. right), and call RegisterValidatorDeclaration here.
  831. * BaseCompareValidator.cs (AddAttributesToRender): render the
  832. client side attributes if we're in uplevel mode.
  833. (DetermineRenderUplevel): add MonoTODO.. why override this? Just
  834. call base.DetermineRenderUplevel for now.
  835. * RegularExpressionValidator.cs (AddAttributesToRender): render
  836. the client side attributes if we're in uplevel mode.
  837. * RequiredFieldValidator.cs (AddAttributesToRender): same.
  838. * CompareValidator.cs (AddAttributesToRender): same.
  839. 2005-07-20 Jackson Harper <[email protected]>
  840. * DataGrid.cs: Save the data source created column set in the
  841. view state.
  842. 2005-07-20 Sebastien Pouliot <[email protected]>
  843. * DataList.cs: Fix events and properties exceptions. Give the right
  844. informations to RenderItem.
  845. 2005-07-20 Peter Dennis Bartok <[email protected]>
  846. * ValidationSummary.cs: Implemented rendering
  847. 2005-07-20 Jackson Harper <[email protected]>
  848. * DataGrid.cs: column names are cached and only regenerated if useDataSource
  849. is set to true. Otherwise they are just fetched from the last set that
  850. was generated from the source.
  851. 2005-07-20 Jackson Harper <[email protected]>
  852. * DataGrid.cs: Assign some properties of newly created BoundColumns.
  853. 2005-07-20 Sebastien Pouliot <[email protected]>
  854. * DataList.cs: Fix viewstate ordering.
  855. 2005-07-20 Ben Maurer <[email protected]>
  856. * SelectedDatesCollection.cs: Apprarently, I don't write code well
  857. at 1 am.
  858. * Repeater.cs: Uh, actually add stuff to the items collection
  859. (thanks sp ;-)
  860. 2005-07-20 Sebastien Pouliot <[email protected]>
  861. * BaseDataList.cs: EnsureChildControls on Controls property.
  862. * DataList.cs: Fix rendering and Controls/Items differences.
  863. * DataListItem.cs: Added rendering of controls.
  864. 2005-07-20 Sebastien Pouliot <[email protected]>
  865. * BaseDataList.cs: Don't call base.Render (or we'll get an extra span).
  866. 2005-07-20 Jackson Harper <[email protected]>
  867. * DataGrid.cs: Add some of the collections. Implement
  868. column creation.
  869. 2005-07-20 Jackson Harper <[email protected]>
  870. * PagedDataSource.cs: Implement GetItemProperties, this is
  871. needed for the datagrid.
  872. 2005-07-20 Ben Maurer <[email protected]>
  873. * DataGridColumnCollection.cs: New impl
  874. * TemplateColumn.cs: New impl
  875. 2005-07-19 Sebastien Pouliot <[email protected]>
  876. * BaseDataList.cs: Call PrepareControlHierarchy from Render.
  877. * DataList.cs: Work in progress... Added attributes, proper
  878. IRepeatInfoUser support and cool things stolen from other classes.
  879. * DataListCommandEventArgs.cs: Class is sealed.
  880. * DataListItem.cs: RenderItem is public.
  881. 2005-07-19 Jackson Harper <[email protected]>
  882. * ListControl.cs: Use Events Add/RemoveHandler. Don't create
  883. a viewstate object if all the viewstate stuff is null.
  884. 2005-07-19 Jackson Harper <[email protected]>
  885. * DataGrid.cs: Implement style properties and viewstate
  886. saving/loading/tracking.
  887. 2005-07-19 Chris Toshok <[email protected]>
  888. * BaseValidator.cs: more fixes from pdb.
  889. 2005-07-19 Chris Toshok <[email protected]>
  890. * BaseValidator.cs: some test-driven fixes.
  891. 2005-07-19 Chris Toshok <[email protected]>
  892. * BaseValidator.cs: Initial implementation.
  893. 2005-07-19 Sebastien Pouliot <[email protected]>
  894. * Repeater.cs: Fix small typo.
  895. 2005-07-19 Peter Dennis Bartok <[email protected]>
  896. * ValidationSummaryTest.cs: Started implementation
  897. * RangeValidator.cs: Implemented
  898. * ValidatedControlConverter.cs: Implemented
  899. * DropDownList.cs: Implemented
  900. 2005-07-19 Jackson Harper <[email protected]>
  901. * DataGrid.cs: Implement bubble event.
  902. 2005-07-19 Jackson Harper <[email protected]>
  903. * DataGrid.cs: New implementation. Just properties and events for
  904. now.
  905. 2005-07-18 Chris Toshok <[email protected]>
  906. * BaseCompareValidator.cs: Initial implementation, with some NYI.
  907. 2005-07-19 Ben Maurer <[email protected]>
  908. * FontUnit.cs: Corcompare fixes
  909. * UnitConverter.cs: Fix api diffs
  910. 2005-07-18 Ben Maurer <[email protected]>
  911. * ListControl.cs: Fix api differences
  912. 2005-07-18 Sebastien Pouliot <[email protected]>
  913. * Table.cs: Fix indentation for caption. Simplify check when adding
  914. controls.
  915. * TableRow.cs: Simplify check when adding controls.
  916. 2005-07-18 Chris Toshok <[email protected]>
  917. * CompareValidator.cs: wtf, just use the base class's methods.
  918. 2005-07-18 Chris Toshok <[email protected]>
  919. * CompareValidator.cs: do comparisons based on
  920. BaseCompareValidator.Type.
  921. 2005-07-18 Chris Toshok <[email protected]>
  922. * CompareValidator.cs: initial implementation.
  923. 2005-07-18 Chris Toshok <[email protected]>
  924. * RegularExpressionValidator.cs: initial implementation.
  925. 2005-07-18 Sebastien Pouliot <[email protected]>
  926. * DataList.cs: Fixed to match 1.1 behaviour (and new unit tests).
  927. 2005-07-18 Jackson Harper <[email protected]>
  928. * CheckBoxList.cs: Implement LoadPostBackData. Also register
  929. checkboxes for postback if they are checked so we can find
  930. out when they are unchecked. Copy the AutoPostBack variable
  931. to the to be rendered checkbox when rendering.
  932. 2005-07-18 Ben Maurer <[email protected]>
  933. * TextBox.cs: Finish this up.
  934. * AdRotator.cs: Fix issues in the test suite. Minor style
  935. cleanups.
  936. * Repeater.cs: Fix a bug where the datasource is null and we do
  937. the binding
  938. * WebColorConverter.cs: Optimize by not doing a concat on a
  939. formatted string.
  940. 2005-07-17 Ben Maurer <[email protected]>
  941. * ListItemCollection.cs: Multiple uses of equals rather than
  942. string.compare as below. Remove unreachable code warning.
  943. * WebColorConverter.cs (ConvertTo): Use the == operator on string
  944. rather than an invariant non-case ignoring compare. They are
  945. exactly the same thing. Use proper coding style in this method.
  946. * WebControl.cs: Return null when saving the view state if there
  947. is no state in any of the things we save. This creates a fairly
  948. large savings, because we can avoid saving anything about many
  949. levels of deaply nested controls.
  950. 2005-07-15 Jackson Harper <[email protected]>
  951. * CheckBoxList.cs: Use the index as the ID, the rest of the
  952. id is built by being in the NamingContainer.
  953. 2005-07-15 Jackson Harper <[email protected]>
  954. * ListControl.cs: Use enum instead of string. Saves a lookup.
  955. 2005-07-15 Jackson Harper <[email protected]>
  956. * CheckBoxList.cs: FindControl always returns 'this' according
  957. to my probing.
  958. 2005-07-15 Jackson Harper <[email protected]>
  959. * CheckBoxList.cs: New impl.
  960. 2005-07-15 Jackson Harper <[email protected]>
  961. * WebControl.cs: Use the ClientID when rendering a controls ID
  962. attribute so that naming containers are honoured.
  963. 2005-07-15 Jackson Harper <[email protected]>
  964. * ListControl.cs: use the state manager interface for tracking
  965. the viewstate.
  966. 2005-07-15 Ben Maurer <[email protected]>
  967. * Repeater.cs (DoItem): Add the DataItem before we call user
  968. methods, as it seems to be there with msft.
  969. 2005-07-15 Sebastien Pouliot <[email protected]>
  970. * BaseDataList.cs: New. (mostly complete) implementation.
  971. * DataKeyCollection.cs: New. Implementation (complete).
  972. * DataList.cs: New. (mostly incomplete) implementation.
  973. * DataListItem.cs: New. (mostly complete) implementation.
  974. * DataListItemCollection.cs: New. Implementation (complete).
  975. 2005-07-15 Ben Maurer <[email protected]>
  976. * Repeater.cs (DoItem): We need to .Add the control *before* we
  977. data bind it so that the state gets tracked correctly. Fixes the
  978. postback test case.
  979. 2005-07-15 Jackson Harper <[email protected]>
  980. * ListControl.cs: Simplify comparison.
  981. 2005-07-15 Jackson Harper <[email protected]>
  982. * ListControl.cs:
  983. * Repeater.cs: Use new utility class for resolving data sources.
  984. 2005-07-15 Jackson Harper <[email protected]>
  985. * ListControl.cs: Add attributes so the sub items get parsed
  986. properly. Remove old unneeded code for resolving lists.
  987. 2005-07-15 Jackson Harper <[email protected]>
  988. * ListControl.cs: Use the DataSourceHelper so DataMembers are
  989. resolved properly.
  990. 2005-07-14 Ben Maurer <[email protected]>
  991. * WebControl.cs:
  992. - Some optimizations
  993. * Don't use enum formatting stuff, it is 1) expensive 2) does
  994. allocations. Use a new method in HtmlControl to do the right
  995. formatting.
  996. * Don't use Enum.IsDefined but an explicit check.
  997. * (x == "" || x.Length < 2) is not needed since "".Length == 0 < 2
  998. - Use the correct coding style.
  999. 2005-07-14 Peter Dennis Bartok <[email protected]>
  1000. * WebColorConverter.cs:
  1001. - Alpha of 255 is only set if the hex number is exactly 6 digits
  1002. - Ben didn't like the catch { throw; } (even though MS documents to
  1003. do so)
  1004. - Use Invariant Culture for parsing (thanks, Ben)
  1005. 2005-07-14 Jackson Harper <[email protected]>
  1006. * ListControl.cs: Use DataBinder.Eval for data binding. This is more
  1007. code-reuse-arific. Also use the IStateManager interface for loading
  1008. data instead of the old internal method.
  1009. 2005-07-14 Peter Dennis Bartok <[email protected]>
  1010. * WebColorConverter.cs: Implemented
  1011. 2005-07-14 Ben Maurer <[email protected]>
  1012. * Repeater.cs: Cleanup; use the DataSourceHelper thingy.
  1013. 2005-07-14 Ben Maurer <[email protected]>
  1014. * Repeater.cs: Get it working
  1015. 2005-07-14 Jackson Harper <[email protected]>
  1016. * ListControl.cs: Initial implementation of Databinding. Make sure
  1017. that the ListItemCollection is created when we load its ViewState.
  1018. 2005-07-14 Jackson Harper <[email protected]>
  1019. * ListControl.cs: Fix typo.
  1020. 2005-07-14 Jackson Harper <[email protected]>
  1021. * ListControl.cs: New Implementation. Lacks databinding support.
  1022. 2005-07-14 Ben Maurer <[email protected]>
  1023. * Repeater.cs: The beginnings of this control
  1024. 2005-07-14 Peter Dennis Bartok <[email protected]>
  1025. * TargetConverter.cs: Implemented
  1026. 2005-07-14 Duncan Mak <[email protected]>
  1027. * PagedDataSource.cs: Initial implementation.
  1028. Methods that need to be figured out:
  1029. CopyTo, GetItemProperties, PageCount, IsLastPage.
  1030. To complete: CollectionEnumerator, ListEnumerator.
  1031. 2005-07-13 Duncan Mak <[email protected]>
  1032. * RepeatDirection.cs:
  1033. * RepeatLayout.cs:
  1034. * ValidationCompareOperator.cs:
  1035. * ValidationDataType.cs:
  1036. * ValidationSummaryDisplayMode.cs:
  1037. * ValidatorDisplay.cs: Added remaining enumerations.
  1038. 2005-07-13 Peter Dennis Bartok <[email protected]>
  1039. * FontNamesConverter.cs: Implemented
  1040. 2005-07-13 Ben Maurer <[email protected]>
  1041. * RepeaterItem.cs: Compile fix
  1042. * RepeaterItemCollection.cs: New file
  1043. * RepeaterItem.cs: get OnBubbleEvent right.
  1044. 2005-07-13 Peter Dennis Bartok <[email protected]>
  1045. * ListItemCollection.cs: Count can be derived from the array, which
  1046. allows us to use a Pair instead of a Triplet and save some space
  1047. 2005-07-13 Ben Maurer <[email protected]>
  1048. * RepeaterItem.cs: Stub
  1049. 2005-07-13 Peter Dennis Bartok <[email protected]>
  1050. * ListItemCollection.cs: Implemented
  1051. * WebControl.cs: Added check for enumeration validity (thanks Jackson)
  1052. 2005-07-13 Ben Maurer <[email protected]>
  1053. * RepeatInfo.cs: Impl.
  1054. 2005-07-13 Peter Dennis Bartok <[email protected]>
  1055. * FirstDayOfWeek.cs: Added
  1056. 2005-07-13 Jackson Harper <[email protected]>
  1057. * ListBox.cs: Some parameter checking.
  1058. 2005-07-13 Sebastien Pouliot <[email protected]>
  1059. * Image.cs: Added support for DescriptionUrl as this property was
  1060. added in Fx 1.1 SP1.
  1061. 2005-07-13 Peter Dennis Bartok <[email protected]>
  1062. * Style.cs (AddAttributesToRender): Don't render attributes if they
  1063. contain only their default value
  1064. 2005-07-13 Sebastien Pouliot <[email protected]>
  1065. * Table.cs: New. Initial re-implementation.
  1066. * TableCell.cs: New. Initial re-implementation.
  1067. * TableCellCollection.cs: New. Initial re-implementation.
  1068. * TableHeaderCell.cs: New. Initial re-implementation.
  1069. * TableItemStyle.cs: New. Initial re-implementation.
  1070. * TableRow.cs: New. Initial re-implementation.
  1071. * TableRowCollection.cs: New. Initial re-implementation.
  1072. * TableStyle.cs: New. Initial re-implementation.
  1073. 2005-07-13 Sebastien Pouliot <[email protected]>
  1074. * Style.cs: Removed the call to Reset in CopyFrom. This fix the new
  1075. unit tests (for Style) and more tests in Table* classes.
  1076. 2005-07-13 Sebastien Pouliot <[email protected]>
  1077. * Style.cs: TableStyle and TableItemStyle don't override IsEmpty,
  1078. however IsEmpty returns false if any of their properties are set.
  1079. Looks ugly but it's compatible with MS implementation (feature and
  1080. signature wise).
  1081. 2005-07-13 Dick Porter <[email protected]>
  1082. * CheckBox.cs: Reverted Ben's enum-to-int ViewState change, remove
  1083. null Text properties from the ViewState, test for TextAlign being
  1084. out of range. All to make tests pass on both mono and ms
  1085. runtimes.
  1086. 2005-07-13 Jackson Harper <[email protected]>
  1087. * ListBox.cs: Use invariant culture when doing a ToString,
  1088. set value to the item's value, not to its Text.
  1089. 2005-07-12 Peter Dennis Bartok <[email protected]>
  1090. * WebControl.cs (AddAttributesToRender): Added ID to rendered
  1091. attributes
  1092. 2005-07-12 Peter Dennis Bartok <[email protected]>
  1093. * Style.cs(MergeWith): Handle null styles
  1094. 2005-07-12 Sebastien Pouliot <[email protected]>
  1095. * TableCaptionAlign.cs: This enum was added in 1.1 SP1 so I removed
  1096. the #if NET_2_0 on it.
  1097. 2005-07-12 Peter Dennis Bartok <[email protected]>
  1098. * Style.cs: Only render font elements if fontinfo object exists
  1099. * WebControl.cs:
  1100. - Implemented SaveViewState()
  1101. - Added loading of Style to LoadViewState
  1102. - Implemented IAttributeAccessor methods
  1103. 2005-07-12 Jackson Harper <[email protected]>
  1104. * ListBox.cs: Even track default values in the viewstate. Call
  1105. base's RenderContents.
  1106. 2005-07-12 Jackson Harper <[email protected]>
  1107. * ListBox.cs: New impl.
  1108. 2005-07-12 Peter Dennis Bartok <[email protected]>
  1109. * WebControl.cs:
  1110. - Implemented methods
  1111. - Fixed brackets
  1112. 2005-07-12 Ben Maurer <[email protected]>
  1113. * ListItem.cs: New impl.
  1114. 2005-07-12 Duncan Mak <[email protected]>
  1115. * DayNameFormat.cs: Added.
  1116. 2005-07-12 Peter Dennis Bartok <[email protected]>
  1117. * WebControl.cs: Implemented properties
  1118. 2005-07-12 Ben Maurer <[email protected]>
  1119. * TextBox.cs: Passwords seem 1) not to be rendered to the client
  1120. if set, 2) not kept in view state (for security reasons...)
  1121. * LinkButton.cs:
  1122. * Button.cs: Page.Validate () if needed. Gets the validator tests
  1123. working again.
  1124. * TextBox.cs: Properties to get the validator stuff to work.
  1125. 2005-07-12 Miguel de Icaza <[email protected]>
  1126. * Unit.cs: If the units are pixels, then truncate the value.
  1127. 2005-07-12 Dick Porter <[email protected]>
  1128. * RadioButton.cs: New implementation
  1129. * CheckBox.cs: Rearrange the attributes rendering to allow
  1130. RadioButton to derive from this
  1131. 2005-07-12 Jordi Mas i Hernandez <[email protected]>
  1132. * TitleFormat.cs: Add attribute
  1133. * TextBoxMode.cs: Add attribute
  1134. * CalendarDay.cs: Initial implementation
  1135. * ImageButton.cs: Initial implementation
  1136. * CalendarSelectionMode.cs:Initial implementation
  1137. 2005-07-12 Jordi Mas i Hernandez <[email protected]>
  1138. * TextBoxMode.cs: simple enum
  1139. * TitleFormat.cs: simple enum
  1140. 2005-07-11 Peter Dennis Bartok <[email protected]>
  1141. * FontInfo.cs: Now using BenM's fancy internal StateBag methods
  1142. 2005-07-11 Peter Dennis Bartok <[email protected]>
  1143. * FontUnit.cs: Added TypeConverter attribute to class
  1144. * FontUnitConverter.cs: Implemented
  1145. 2005-07-11 Ben Maurer <[email protected]>
  1146. * LinkButton.cs:
  1147. * Button.cs: Bubble the Command event.
  1148. 2005-07-11 Ben Maurer <[email protected]>
  1149. * Button.cs:
  1150. - Clean up style (with my wonderful state bag hack!)
  1151. - Fix a view state typo.
  1152. - Use AddAttributesToRender
  1153. - Don't add an extra <span>
  1154. 2005-07-11 Peter Dennis Bartok <[email protected]>
  1155. * Style.cs: Handle null constructor argument for bag
  1156. 2005-07-11 Dick Porter <[email protected]>
  1157. * CheckBox.cs: New implementation
  1158. * RadioButton.cs: Initial stubbed version that just compiles
  1159. 2005-07-10 Jordi Mas i Hernandez <[email protected]>
  1160. * Button.cs: Initial Button implementation
  1161. 2005-07-10 Sebastien Pouliot <[email protected]>
  1162. * VerticalAlign.cs: Fixed enum name (copy/paste from HorizontalAlign).
  1163. 2005-07-09 Sebastien Pouliot <[email protected]>
  1164. * HorizontalAlign.cs: Typo in header.
  1165. * VerticalAlign.cs: New. Required enum for TableRow control.
  1166. 2005-07-09 Ben Maurer <[email protected]>
  1167. * TextBox.cs: More work on this
  1168. 2005-07-09 Sebastien Pouliot <[email protected]>
  1169. * GridLines.cs: New. Required enum for Table control.
  1170. * HorizontalAlign.cs: New. Required enum for Table control.
  1171. 2005-07-09 Duncan Mak <[email protected]>
  1172. * CommandEventHandler.cs:
  1173. * DataGridCommandEventHandler.cs:
  1174. * DataGridItemEventHandler.cs:
  1175. * DataGridPageChangedEventHandler.cs:
  1176. * DataGridSortCommandEventHandler.cs:
  1177. * DataListCommandEventHandler.cs:
  1178. * DayRenderEventHandler.cs:
  1179. * RepeaterCommandEventHandler.cs:
  1180. * ServerValidateEventHandler.cs: Add delegates.
  1181. * ListItemType.cs:
  1182. * ListSelectionMode.cs:
  1183. * NextPrevFormat.cs:
  1184. * PagerMode.cs
  1185. * PagerPosition.cs: Add enums.
  1186. 2005-07-09 Ben Maurer <[email protected]>
  1187. * TextBox.cs: Add the work I did on this today. It's not complete
  1188. yet, but its a start!
  1189. 2005-07-09 Duncan Mak <[email protected]>
  1190. * CommandEventArgs.cs:
  1191. * DataGridCommandEventArgs.cs:
  1192. * DataGridItemEventArgs.cs:
  1193. * DataGridPageChangedEventArgs.cs:
  1194. * DataGridSortCommandEventArgs.cs:
  1195. * DataListCommandEventArgs.cs:
  1196. * DataListItemEventArgs.cs:
  1197. * DayRenderEventArgs.cs:
  1198. * RepeaterCommandEventArgs.cs:
  1199. * RepeaterItemEventArgs.cs:
  1200. * ServerValidateEventArgs.cs: Implemented.
  1201. 2005-07-08 Sebastien Pouliot <[email protected]>
  1202. * Image.cs: New. Image class implementation.
  1203. * ImageAlign.cs: New. ImageAlign enum definitions.
  1204. 2005-07-08 Jackson Harper <[email protected]>
  1205. * Literal.cs: New implentation.
  1206. * MonthChangedEventArgs.cs: new
  1207. * MonthChangedEventHandler.cs: new
  1208. 2005-07-08 Ben Maurer <[email protected]>
  1209. * LinkButton.cs: Command impl
  1210. 2005-07-08 Ben Maurer <[email protected]>
  1211. * LinkButton.cs: Initial impl
  1212. 2005-07-08 Jackson Harper <[email protected]>
  1213. * AdCreatedeventArgs.cs: New implementation.
  1214. 2005-07-08 Dick Porter <[email protected]>
  1215. * TextAlign.cs:
  1216. * BorderStyle.cs: Added
  1217. 2005-07-07 Peter Dennis Bartok <[email protected]>
  1218. * FontInfo.cs: Fixed behaviour discrepancies showed by tests
  1219. 2005-07-07 Miguel de Icaza <[email protected]>
  1220. * Xml.cs: New implementation. R00lz.
  1221. 2005-07-07 Peter Dennis Bartok <[email protected]>
  1222. * FontInfo.cs: Added and implemented.
  1223. * Style.cs: Fixed behaviour discrepancies showed by tests
  1224. 2005-07-07 Ben Maurer <[email protected]>
  1225. * PlaceHolderControlBuilder.cs: new file
  1226. * LabelControlBuilder.cs: New file
  1227. * HyperLink.cs: use control builder; fix parsing stuff
  1228. * HyperLinkControlBuilder.cs: new file
  1229. * Panel.cs: misc fixes
  1230. 2005-07-07 Miguel de Icaza <[email protected]>
  1231. * Unit.cs: Add TypeConverter, so that web_panel.aspx works again.
  1232. * UnitConverter.cs: Add new file, learned from the
  1233. System.Drawing.ColorConverter.
  1234. 2005-07-07 Ben Maurer <[email protected]>
  1235. * PlaceHolder.cs: New file. Seems to do nothing
  1236. * Label.cs: Use my new statebag trick to reduce typing
  1237. * HyperLink.cs: New file
  1238. 2005-07-06 Peter Dennis Bartok <[email protected]>
  1239. * Style.cs: Added and implemented.
  1240. 2005-07-06 Miguel de Icaza <[email protected]>
  1241. * FontUnit.cs: New file.
  1242. * Unit.cs: New file.
  1243. Added support for null and empty string constructors.
  1244. 2005-07-06 Ben Maurer <[email protected]>
  1245. * Unit.cs: cctor not needed; static fields are 0 init'd by default
  1246. * WebControl.cs: Kothari & Datye's book explains how these work.
  1247. * IRepeatInfoUser.cs: Reimpl.
  1248. 2005-07-06 Peter Dennis Bartok <[email protected]>
  1249. * WebControl.cs: Added stub
  1250. 2005-07-05 Miguel de Icaza <[email protected]>
  1251. * Label.cs: First control.
  1252. 2005-06-27 Lluis Sanchez Gual <[email protected]>
  1253. * DataControlField.cs: Ignore the ShowHeader property when
  1254. building the control's content. It is the resposability of
  1255. the field container to decide if the header should be shown
  1256. or not.
  1257. 2005-06-10 Lluis Sanchez Gual <[email protected]>
  1258. * AdType.cs:
  1259. * ImageFieldMode.cs:
  1260. * DynamicImageParameterMode.cs:
  1261. * TableViewMode.cs: Removed.
  1262. * SortDirection.cs:
  1263. * AdRotator.cs:
  1264. * TableRowSection.cs:
  1265. * AutoCompleteType.cs:
  1266. * DayNameFormat.cs: Track changes in 2.0 api.
  1267. * StringArrayConverter.cs: This class is 2.0 only.
  1268. 2005-06-06 Lluis Sanchez Gual <[email protected]>
  1269. * GridView.cs:
  1270. * FormView.cs:
  1271. * DetailsView.cs: Bind the control after creating all child
  1272. controls.
  1273. * DataBoundControl.cs: Call OnDataBinding and OnDataBound in
  1274. the correct methods.
  1275. * BaseDataBoundControl.cs: Don't call DataBind nor OnDataBound
  1276. in this class. This is done in DataBoundControl. All this fixes
  1277. bug #75076.
  1278. 2005-05-29 Gonzalo Paniagua Javier <[email protected]>
  1279. * ListItemCollection.cs: Patch from Curtis ([email protected]) that fixes
  1280. FindByText. Closes bug #74205.
  1281. 2005-05-26 Gonzalo Paniagua Javier <[email protected]>
  1282. * PagedDataSource.cs: patch by Suresh Kumar that makes PageCount return
  1283. 1 when there's a datasource and 0 pages. Closes bug #73864.
  1284. 2005-05-26 Lluis Sanchez Gual <[email protected]>
  1285. * DataListItem.cs:
  1286. * GridViewRow.cs:
  1287. * DataGridItem.cs:
  1288. * RepeaterItem.cs:
  1289. * FormView.cs:
  1290. * MenuItemTemplateContainer.cs:
  1291. * DetailsView.cs: Track changes in the IDataItemContainer interface.
  1292. * CommandField.cs: Added CausesValidation property. Set that
  1293. property value to all buttons of the field.
  1294. * SqlDataSourceView.cs:
  1295. * CollectionDataSource.cs:
  1296. * XmlDataSourceView.cs: Properly initialize the base class.
  1297. * SiteMapDataSource.cs:
  1298. * SiteMapHierarchicalDataSourceView.cs:
  1299. * SiteMapNodeItem.cs:
  1300. * SiteMapDataSourceView.cs:
  1301. * SiteMapPath.cs: Mostly implemented.
  1302. * HierarchicalDataBoundControl.cs: Always bind the control when the
  1303. page is loaded for the first time.
  1304. * TreeView.cs: Properly bind the control when loaded from a callback.
  1305. 2005-05-21 Ben Maurer <[email protected]>
  1306. * BaseDataList.cs: Caption is in 1.1 too, though not
  1307. documented. Gonz owes me [more] ice cream. Yummmmm.
  1308. 2005-05-20 Gonzalo Paniagua Javier <[email protected]>
  1309. * BaseDataList.cs: implemented 2.0 Caption property.
  1310. 2005-05-18 Lluis Sanchez Gual <[email protected]>
  1311. * TreeView.cs: Always render the startup script. This fixes
  1312. bug #74949.
  1313. 2005-05-13 Lluis Sanchez Gual <[email protected]>
  1314. * WizardStepBase.cs:
  1315. * WizardStep.cs: Added missing attributes.
  1316. * Wizard.cs: Implemented missing methods and properties. It can now
  1317. be considered feature complete.
  1318. 2005-05-10 Gonzalo Paniagua Javier <[email protected]>
  1319. * DataGrid.cs: cleanup in AutoCreateColumns. Don't throw at the end of
  1320. the method if the data source was en empty IEnumerator. Fixes
  1321. bug #74804.
  1322. 2005-05-06 Lluis Sanchez Gual <[email protected]>
  1323. * TreeNode.cs:
  1324. * TreeView.cs:
  1325. * Menu.cs: Implemented some new properties from beta 2.
  1326. * DataControlButton.cs: Render the ControlStyle if it
  1327. is not empty.
  1328. * UnitConverter.cs:
  1329. * FontUnitConverter.cs: Improved the conversion to InstanceDescriptor.
  1330. It will now generate an object creation, instead of a Parse call.
  1331. * GridViewCommandEventArgs.cs: Added missing property.
  1332. * SubMenuStyleCollection.cs: This class is not sealed.
  1333. * MultiView.cs: Set Visible=false to all views that are not
  1334. shown. This ensures that it's view state is saved.
  1335. * BaseDataBoundControl.cs:
  1336. * GridViewDeletedEventArgs.cs: Minor api fixes.
  1337. * FormViewDeleteEventArgs.cs:
  1338. * DetailsViewDeletedEventArgs.cs:
  1339. * ListControl.cs: Fix warnings.
  1340. * CircleHotSpot.cs
  1341. * HotSpot.cs
  1342. * HotSpotCollection.cs
  1343. * ImageMap.cs
  1344. * PolygonHotSpot.cs
  1345. * RectangleHotSpot.cs
  1346. * WizardStepCollection.cs : Implemented.
  1347. * WizardStep.cs
  1348. * WizardStepBase.cs
  1349. * Wizard.cs: Initial implementation.
  1350. 2005-05-04 Lluis Sanchez Gual <[email protected]>
  1351. * DataControlField.cs:
  1352. * CommandField.cs:
  1353. * GridView.cs:
  1354. * FormView.cs:
  1355. * DataControlCommands.cs:
  1356. * DetailsView.cs: Use constants to identify commands.
  1357. * SubMenuStyle.cs: Use Unit instead of int for padding.
  1358. * SubMenuStyleCollection.cs: Implemented.
  1359. * DataList.cs:
  1360. * Menu.cs: Added some missing methods and properties.
  1361. * Literal.cs:
  1362. * DataGridPagerStyle.cs: Fixed default value attributes.
  1363. * ListControl.cs: Implemented IEditableTextControl interface.
  1364. * MenuItemBinding.cs: Added Selectable property.
  1365. * CustomValidator.cs: removed interface.
  1366. * MenuItem.cs: Added support for custom binding.
  1367. * DropDownList.cs: Moved text properties to base class.
  1368. 2005-04-29 Gonzalo Paniagua Javier <[email protected]>
  1369. * Calendar.cs: OnDayRender can toggle IsSelectable on our back.
  1370. 2005-04-26 Gonzalo Paniagua Javier <[email protected]>
  1371. * Calendar.cs: when the day is active, modify the text of the literal
  1372. control that holds the number, not the text of the TableCell. Also call
  1373. OnDayRender before updating that text. Fixes bug #74718.
  1374. 2005-04-22 Lluis Sanchez Gual <[email protected]>
  1375. * DataKey.cs: Added virtual TrackViewState and IsTrackingViewState
  1376. members.
  1377. * DataControlFieldHeaderCell.cs: Save Scope in view state.
  1378. Added AbbreviatedText property.
  1379. * AutoGeneratedField.cs: The constructor should actually be internal.
  1380. * DataGridItem.cs: Added implemented interface in 2.0.
  1381. * DataControlFieldCollection.cs: Implemented CloneFields and
  1382. GetKnownTypes().
  1383. *
  1384. 2005-04-22 Gonzalo Paniagua Javier <[email protected]>
  1385. * StringArrayConverter.cs:
  1386. * Calendar.cs: warnings.
  1387. 2005-04-21 Lluis Sanchez Gual <[email protected]>
  1388. * FormViewDeleteEventArgs.cs:
  1389. * FormViewInsertEventArgs.cs:
  1390. * FormViewUpdateEventArgs.cs:
  1391. * FormViewDeletedEventArgs.cs:
  1392. * FormViewUpdatedEventArgs.cs:
  1393. * FormViewInsertedEventArgs.cs: Implemented some missing properties.
  1394. * LinkButton.cs:
  1395. * IButtonControl.cs:
  1396. * Button.cs: Removed SoftKey property.
  1397. * CheckBox.cs: Don't try to load post back data if the control
  1398. is disabled.
  1399. * ImageField.cs:
  1400. * AutoGeneratedField.cs:
  1401. * DataControlField.cs:
  1402. * CommandField.cs:
  1403. * ButtonFieldBase.cs:
  1404. * BoundField.cs:
  1405. * CheckBoxField.cs:
  1406. * TemplateField.cs:
  1407. * ButtonField.cs: Don't bind fields in Insert state.
  1408. Implemented CreateField and CopyProperties.
  1409. * GridView.cs:
  1410. * DetailsView.cs: Removed some unneeded interfaces. Don't
  1411. generate the field rows if there are no items in the data source.
  1412. Don't get the current keys until the whole control has been
  1413. bound.
  1414. * DetailsViewInsertedEventArgs.cs:
  1415. * DataBoundControl.cs:
  1416. * ObjectDataSourceView.cs: Made some methods private.
  1417. * MenuItemStyle.cs:
  1418. * Menu.cs: Changed some properties from int to Unit.
  1419. * DataControlButton.cs: javascript prefix is needed when raising
  1420. the postback event from a link.
  1421. * PagedDataSource.cs: Some fixes in Count and IsLastPage properties.
  1422. The result was wrong when the total data source count was 0.
  1423. * FormView.cs: Implemented.
  1424. * FormViewRow.cs: Implemented.
  1425. * Literal.cs:
  1426. * Localize.cs: Fixed base interface.
  1427. * BaseDataBoundControl.cs: In DataBind() call the base class
  1428. DataBind method, so the binding context is properly set.
  1429. 2005-04-15 Lluis Sanchez Gual <[email protected]>
  1430. * DetailsView.cs: Added some null checks.
  1431. * TemplateField.cs: Implemented support for two-way bindings.
  1432. 2005-04-14 Lluis Sanchez Gual <[email protected]>
  1433. * DetailsView.cs: Implemented support for Insert operation.
  1434. Added header and footer templates. Added missing style
  1435. properties.
  1436. * ObjectDataSourceView.cs: Use ParameterCollection.GetValues
  1437. to get filter values. Other minor fixes.
  1438. * CommandField.cs: Properly render the Insert and New buttons.
  1439. * ObjectDataSource.cs: Update the parameter collections after
  1440. the page is loaded. This will fire the ParameterChanged event
  1441. if needed.
  1442. * DataBoundControl.cs: The OnDataSourceViewChanged method
  1443. is called when the view changes, not when the datasource
  1444. changes.
  1445. * DetailsViewInsertedEventArgs.cs:
  1446. * DetailsViewInsertEventArgs.cs: Implement Values property.
  1447. * ImageField.cs:
  1448. * AutoGeneratedField.cs
  1449. * BoundField.cs:
  1450. * CheckBoxField.cs:
  1451. Take into account the Insert mode.
  1452. * ParameterCollection.cs: Implemented UpdateValues and fixed
  1453. GetValues (values can't be cached because can change).
  1454. * Parameter.cs: Detect value changes in GetValue, and fire
  1455. the change event if needed. Removed unused ParameterValue
  1456. property. Other fixes.
  1457. 2005-04-08 Lluis Sanchez Gual <[email protected]>
  1458. * DetailsView.cs: Initial implementation.
  1459. * ObjectDataSourceView.cs: Notify changes in the parameters.
  1460. * DetailsViewDeletedEventArgs.cs, DetailsViewUpdatedEventArgs.cs,
  1461. DetailsViewDeleteEventArgs.cs, DetailsViewUpdateEventArgs.cs:
  1462. Implemented some properties.
  1463. * GridView.cs: Added null check in SelectedValue. Don't return null
  1464. for empty DataKeyNames list.
  1465. * DetailsViewRowCollection.cs: Implemented.
  1466. * DetailsViewRow.cs: Implemented.
  1467. * ButtonFieldBase.cs: By default button field don't have headers.
  1468. * BoundField.cs: Don't bind header fields.
  1469. 2005-04-07 Lluis Sanchez Gual <[email protected]>
  1470. * ButtonField.cs: Get data item properties using TypeDescriptor.
  1471. Made OnDataBindField private.
  1472. * ObjectDataSourceView.cs: Implemented support for Delete and
  1473. Insert operations, support for filtering and sorting,
  1474. conflict detection, etc. It's now complete.
  1475. * ObjectDataSource.cs: Completed most of functionality. Only
  1476. caching support is missing.
  1477. * ObjectDataSourceFilteringEventHandler.cs: New event handler.
  1478. * TreeNode.cs: Get data item properties using TypeDescriptor.
  1479. * PagerSettings.cs: Flush.
  1480. * ObjectDataSourceFilteringEventArgs.cs: New event args.
  1481. * GridView.cs: Get data item properties using TypeDescriptor
  1482. and cache them. Properly set descending order in the sort
  1483. expression. In UpdateRow, make sure we get the old values
  1484. before the control is bound again.
  1485. * ImageField.cs: Implemented.
  1486. * AutoGeneratedField.cs: Initialize the field's sort
  1487. expression in the constructor.
  1488. * MenuItem.cs: Get data item properties using TypeDescriptor.
  1489. * BoundField.cs: Get data item properties using TypeDescriptor.
  1490. * CheckBoxField.cs: Added missing attributes.
  1491. * TemplateField.cs: Implemented.
  1492. 2005-04-07 Gonzalo Paniagua Javier <[email protected]>
  1493. * UnitConverter.cs:
  1494. * FontUnitConverter.cs: fixed ConvertTo to work with target
  1495. InstanceDescriptor and value as a string.
  1496. * Unit.cs: culture might be null.
  1497. Fixes bug #74431.
  1498. 2005-04-01 Lluis Sanchez Gual <[email protected]>
  1499. * ButtonField.cs: Mostly implemented.
  1500. * DataControlFieldHeaderCell.cs: Implemented.
  1501. * ObjectDataSourceView.cs: Initial implementation.
  1502. * DataControlButton.cs: Added support for real buttons.
  1503. * Label.cs, DataControlField.cs: Flush.
  1504. * ObjectDataSource.cs: Initial implementation.
  1505. * HiddenField.cs: Added class stub.
  1506. * GridView.cs: Load autogenerated field properties before
  1507. creating the children, to make sure that column info is ready.
  1508. * ControlParameter.cs: Implemented Evaluate method.
  1509. * ImageField.cs: Added class stub.
  1510. * BoundField.cs: Added HtmlEncode property.
  1511. * DataControlFieldCell.cs: Moved AccessibleDataControlFieldCell
  1512. to its own file.
  1513. * CheckBoxField.cs: Mostly implemented.
  1514. * TemplateField.cs: Added class stub.
  1515. * ObjectDataSourceSelectingEventArgs.cs: Added missing property.
  1516. * ObjectDataSourceMethodEventArgs.cs: Fixed base class.
  1517. * Parameter.cs: Added internal GetValue method (Evaluate is protected)
  1518. 2005-03-23 Lluis Sanchez Gual <[email protected]>
  1519. * DataControlField.cs: Added missing InsertVisible property.
  1520. * AutoGeneratedFieldProperties.cs: Implemented.
  1521. * PagerSettings.cs: Minor fix.
  1522. * GridView.cs: Implemented support for autogenerated fields, templates,
  1523. accessible headers. Implemented paging using PagedDataSource.
  1524. Implemented missing overridable methods.
  1525. * AutoGeneratedField.cs: Initial implementation.
  1526. * BoundField.cs: Added ReadOnly property.
  1527. * PagedDataSource.cs: Implemented 2.0 api.
  1528. * DataControlFieldCell.cs: Implemented AccessibleDataControlFieldCell
  1529. cell class to be used by accessible headers.
  1530. * TableCell.cs: Removed unneded constructor. If the cell is bound to
  1531. a template, call the default RenderContents method.
  1532. 2005-03-16 Lluis Sanchez Gual <[email protected]>
  1533. * TreeNode.cs, TreeView.cs: Don't raise the SelectedNodeChanged
  1534. event when loading the view state. Fixes #73746.
  1535. 2005-03-16 Lluis Sanchez Gual <[email protected]>
  1536. * ListControl.cs: Load selected indices in the right place. Fixes #73745.
  1537. 2005-03-11 Lluis Sanchez Gual <[email protected]>
  1538. * Button.cs, ImageButton.cs: Interpret PostBackOptions.ClientSubmit
  1539. correctly.
  1540. * CommandField.cs: Mostly implemented.
  1541. * Menu.cs: Use callback methods moved to ClientScriptManager.
  1542. * DataControlButton.cs: Internal control used to implement buttons
  1543. for navigating in data bound controls.
  1544. * DataControlField.cs, PagerSettings.cs: Use the new DataControlButton
  1545. to render the column headers.
  1546. * CheckBox.cs, RadioButton.cs, BulletedList.cs, TextBox.cs
  1547. DropDownList.cs, Calendar.cs, ListBox.cs, LinkButton.cs, TreeView.cs:
  1548. Don't use Page.GetPostBackClientEvent
  1549. since it is deprecated in 2.0.
  1550. * GridView.cs: Implemented some several interfaces.
  1551. Implemented support client sorting and page navigation (using callbacks).
  1552. Implemented the autogenerated command column using the new CommandField
  1553. class.
  1554. * ButtonFieldBase.cs: Implemented.
  1555. * GridView.js: New helper script to support client side sorting and
  1556. paging in the grid view.
  1557. 2005-03-04 Lluis Sanchez Gual <[email protected]>
  1558. * DataKey.cs: Implemented.
  1559. * XmlDataSourceView.cs: Implemented support for row pagging.
  1560. * Table.cs: Fixed attribute value.
  1561. * DataControlField.cs: Added support for sorting headers.
  1562. * ChildTable.cs: Created.
  1563. * ListControl.cs: Delay selection assignment, since control state
  1564. is now loaded before view state.
  1565. * GridViewDeleteEventArgs.cs, GridViewUpdateEventArgs.cs,
  1566. GridViewDeletedEventArgs.cs, GridViewUpdatedEventArgs.cs: Implemented
  1567. several missing properties.
  1568. * PagerSettings.cs: Fully implemented.
  1569. * BaseDataList.cs: Added null check.
  1570. * GridView.cs: Implemented more functionality.
  1571. * BoundField.cs: Added support for cell editing.
  1572. * StringArrayConverter.cs: Implemented.
  1573. * DataKeyArray.cs: Implemented.
  1574. * BaseDataBoundControl.cs: Reset the requires binding flag before
  1575. executing the query. This avoids recursive query calls.
  1576. * GridViewRow.cs: Handler commands raised from row childs.
  1577. 2005-02-25 Lluis Sanchez Gual <[email protected]>
  1578. * XmlDataSourceView.cs: ExecuteSelect now returns a list of
  1579. XmlDataSourceNodeDescriptor instead of a list of nodes. In this way
  1580. it is possible to query for properties fore each data item.
  1581. * Menu.cs, TreeView.cs: Make sure that objects are correctly created
  1582. when loading its view state.
  1583. * DataControlField.cs: Implement properties using a StateBag.
  1584. * XmlDataSourcePropertyDescriptor.cs: Implemented.
  1585. * PagerSettings.cs: Mostly implemented.
  1586. * AccessDataSourceView.cs, AccessDataSource.cs: Added security attribute.
  1587. * DataBoundControl.cs: Added null check.
  1588. * GridView.cs: Initial implementation.
  1589. * CompositeDataBoundControl.cs: Implemented.
  1590. * BoundField.cs: Initial implementation.
  1591. * GridViewRowCollection.cs: Initial implementation.
  1592. * DataControlFieldCollection.cs: Initial implementation.
  1593. * DataControlFieldCell.cs: Fixed control tag.
  1594. * GridViewRow: Initial implementation.
  1595. * XmlDataSourceNodeDescriptor.cs: Implemented.
  1596. 2005-02-23 Gonzalo Paniagua Javier <[email protected]>
  1597. * WebControl.cs: correctly use TagName in RenderBeginTag, ie, if TagKey
  1598. is zero, use the TagName no matter its value. Fixes bug #72415.
  1599. 2005-02-18 Lluis Sanchez Gual <[email protected]>
  1600. * Style.cs: Method name fix.
  1601. * HyperLinkColumn.cs, HyperLink.cs: Moved SoftkeyLabel to HyperLink.
  1602. * BaseCompareValidator.cs: Method signature fix.
  1603. * CollectionDataSource.cs: Implemented DataSource wrapper for collections.
  1604. * BaseDataList.cs, Repeater.cs: Fixed data binding code.
  1605. * BulletedList.cs: Added missing method.
  1606. * DataBoundControl.cs, BaseDataBoundControl.cs: Made it behave like MS.NET.
  1607. 2005-02-16 Lluis Sanchez Gual <[email protected]>
  1608. * HyperLinkColumn.cs, Label.cs: Added missing 2.0 properties.
  1609. * RadioButton.cs: Added missing 2.0 methods.
  1610. * ListItem.cs: Added Enabled property.
  1611. * MailMessageEventArgs.cs: Use the correct message class.
  1612. * ListControl.cs: Implemented missing properties and support for
  1613. control state. Implemented base RenderContents method.
  1614. * Image.cs: Implemented DescriptionUrl and GenerateEmptyAlternateText
  1615. properties.
  1616. * BaseCompareValidator.cs: Implemented methods that support conditional
  1617. use of the invariant culture.
  1618. * DataBoundControl.cs: Set RequiresDataBinding to true in OnLoad.
  1619. * SqlDataSourceCommandEventArgs.cs, SqlDataSourceStatusEventArgs.cs:
  1620. It takes a DbCommand instead of a IDbCommand.
  1621. * GridViewSortEventArgs.cs: Added SortDirection property.
  1622. * TextBox.cs, CheckBoxList.cs: Added protected version of
  1623. IPostBackDataHandler methods.
  1624. * RadioButtonList.cs: Added protected version of
  1625. IPostBackDataHandler and IRepeatInfoUser methods.
  1626. * Repeater.cs: Updated some method names.
  1627. * DropDownList.cs: Added protected version of
  1628. IPostBackDataHandler methods. Reuse RenderContents from base class.
  1629. * RepeaterItem.cs, Localize.cs, Literal.cs: Fix inheritance.
  1630. * GridViewUpdatedEventArgs.cs: Fix typo.
  1631. * ListBox.cs: Added protected version of IPostBackDataHandler methods.
  1632. Reuse RenderContents from base class.
  1633. * BaseDataBoundControl.cs: Several fixes.
  1634. * ImageButton.cs, LinkButton.cs: Implemented several 2.0 properties.
  1635. 2005-02-10 Lluis Sanchez Gual <[email protected]>
  1636. * CheckBoxList.cs: Fix build.
  1637. 2005-02-10 Lluis Sanchez Gual <[email protected]>
  1638. * Button.cs: Use validation group when validating page.
  1639. * XmlDataSourceView.cs: Implemented ExecuteSelect.
  1640. * Menu.cs: Minor fix.
  1641. * CheckBox.cs: Added 2.0 properties and methods.
  1642. * BaseDataList.cs: Always databind the control if view state
  1643. is not enabled.
  1644. * DataList.cs: In 2.0, use control state to save the selected index.
  1645. * DetailsViewUpdatedEventArgs.cs: Fix typo.
  1646. * CustomValidator.cs: Implement IStaticTextControl interface.
  1647. * CheckBoxList.cs: Added missing 2.0 methods.
  1648. * DropDownList.cs: Added missing 2.0 methods. Implemented ITextControl
  1649. interface.
  1650. * XmlDataSource.cs: Return childs of DocumentElement, not the root
  1651. document.
  1652. * DayRenderEventArgs.cs, CompareValidator.cs, DataListItem.cs:
  1653. Implemented 2.0 API.
  1654. 2005-02-04 Lluis Sanchez Gual <[email protected]>
  1655. * Button.cs: Implemented all missing 2.0 features.
  1656. * Table.cs: Render the table caption, when specified.
  1657. * Calendar.cs: Implemented most of missing 2.0 features.
  1658. * TableCell.cs: Fixed attributes.
  1659. 2005-02-02 Lluis Sanchez Gual <[email protected]>
  1660. * ControlPropertyNameConverter.cs: Added file.
  1661. 2005-02-02 Lluis Sanchez Gual <[email protected]>
  1662. * Button.cs, MonthChangedEventArgs.cs, FontInfo.cs, Xml.cs, Style.cs,
  1663. CookieParameter.cs, HyperLinkColumn.cs, Table.cs,
  1664. RegularExpressionValidator.cs, WizardNavigationEventArgs.cs,
  1665. ServerValidateEventArgs.cs, Menu.cs, DataControlField.cs,
  1666. DataGridPagerStyle.cs, Label.cs, CheckBox.cs, ListItem.cs,
  1667. RadioButton.cs, TableStyle.cs, ListControl.cs, Image.cs,
  1668. BaseCompareValidator.cs, FontUnit.cs, DataListCommandEventArgs.cs,
  1669. IButtonControl.cs, BaseDataList.cs, DataList.cs, BulletedList.cs,
  1670. RangeValidator.cs, DataBoundControl.cs, ControlParameter.cs,
  1671. RepeaterItemEventArgs.cs, SqlDataSource.cs, BaseValidator.cs,
  1672. CustomValidator.cs, MenuItem.cs, SessionParameter.cs, TextBox.cs,
  1673. QueryStringParameter.cs, Content.cs, ContentPlaceHolder.cs,
  1674. CheckBoxList.cs, RepeaterCommandEventArgs.cs, RadioButtonList.cs,
  1675. RequiredFieldValidator.cs, AdRotator.cs, DataListItemEventArgs.cs,
  1676. DataGridSortCommandEventArgs.cs, Repeater.cs,
  1677. MenuItemTemplateContainer.cs, HyperLink.cs, SqlDataSourceView.cs,
  1678. XmlDataSource.cs, MultiView.cs, DataGridCommandEventArgs.cs,
  1679. Panel.cs, CompositeControl.cs, DataGrid.cs, ButtonColumn.cs,
  1680. CompareValidator.cs, HierarchicalDataBoundControl.cs,
  1681. EditCommandColumn.cs, Calendar.cs, SiteMapDataSource.cs,
  1682. ListBox.cs, TableCell.cs, ObjectDataSourceSelectingEventArgs.cs,
  1683. ObjectDataSourceMethodEventArgs.cs,DataGridPageChangedEventArgs.cs,
  1684. WebControl.cs, BaseDataBoundControl.cs, FormParameter.cs,
  1685. ValidationSummary.cs, View.cs, ImageButton.cs, TableRow.cs,
  1686. LinkButton.cs, DataGridColumn.cs, Parameter.cs, TableItemStyle.cs,
  1687. AdCreatedEventArgs.cs:
  1688. General 2.0 API fixes: missing attributes, incorrect inheritance,
  1689. missing sealed keywords, wrong signatures, etc.
  1690. 2005-01-28 Lluis Sanchez Gual <[email protected]>
  1691. * Table.cs: Added some 2.0 properties.
  1692. * FontUnitConverter.cs, UnitConverter.cs: Implemented conversion to
  1693. InstanceDescriptor.
  1694. * BaseValidator.cs: Fix warning.
  1695. * MultiView.cs, ViewCollection.cs, View.cs: Implemented.
  1696. 2005-01-26 Lluis Sanchez Gual <[email protected]>
  1697. * Menu.cs: Rendering fixes.
  1698. 2005-01-21 Lluis Sanchez Gual <[email protected]>
  1699. * Content.cs, ContentPlaceHolder.cs, ContentControlBuilder.cs
  1700. ContentPlaceHolderBuilder.cs: Implemented.
  1701. 2005-01-20 Gonzalo Paniagua Javier <[email protected]>
  1702. * CheckBox.cs: when rendering the input tag inside a span tag, keep the
  1703. attributes that are meant to be in the input tag in their place.
  1704. 2005-01-10 Juraj Skripsky <[email protected]>
  1705. * RepeatInfo.cs: fixed bug #68927 (DataList with RepeatLayout='Flow'
  1706. generates invalid html).
  1707. 2005-01-10 Lluis Sanchez Gual <[email protected]>
  1708. * Menu.cs: Implemented most of missing properties. Added support for
  1709. item templates. Implemented menu scrolling.
  1710. * MenuItemBinding.cs: Implemented most of missing properties.
  1711. * MenuItem.cs: Implemented most of missing properties.
  1712. * Menu.js: Implemented scrolling and menu reposition into screen.
  1713. * MenuItemTemplateContainer.cs: Implemented.
  1714. * SubMenuStyle.cs: Implemented.
  1715. 2004-12-20 Lluis Sanchez Gual <[email protected]>
  1716. * Style.cs: Implemented RegisteredCssClass property. Added
  1717. CopyTextStylesFrom method, which copies styles that only apply to text.
  1718. * Menu.cs, Menu.js: Added hover style support. Define all menu styles
  1719. in the page stylesheet. Added support for ItemSpacing property.
  1720. * MenuItemStyle.cs: Implemented FillStyleAttributes method.
  1721. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  1722. * Style.cs: Generate styles using a CssStyleCollection, so the code can
  1723. be reused for the 2.0 FillStyleAttributes method.
  1724. * Menu.cs: Implemented more properties and events. Rendering is very
  1725. complete now.
  1726. * MenuItem.cs: Added PopOutImageUrl property.
  1727. * Menu.js: More work on submenu management.
  1728. 2004-12-10 Lluis Sanchez Gual <[email protected]>
  1729. * Menu.cs: Implemented basic rendering. Added some missing properties.
  1730. * MenuItem.cs: Improved implementation of Depth.
  1731. * Unit.cs: Added serializable attribute.
  1732. * TreeView.cs: Moved GetScriptLiteral method to ClientScriptManager,
  1733. so it can be reused.
  1734. * Menu.js: New script to support he Menu control.
  1735. 2004-12-03 Lluis Sanchez Gual <[email protected]>
  1736. * MenuEventArgs.cs: Changed to sealed.
  1737. * TreeView.cs: Minor fix.
  1738. * Menu.cs, MenuItemBindingCollection.cs, MenuItemCollection.cs,
  1739. MenuItemStyle.cs, MenuItemBinding.cs, MenuItem.cs,
  1740. MenuItemStyleCollection.cs: Initial Menu code.
  1741. 2004-12-02 Lluis Sanchez Gual <[email protected]>
  1742. * TreeNodeBindingCollection.cs, TreeNodeStyleCollection.cs:
  1743. Implemented SetDirtyObject.
  1744. * Style.cs: Implemented SetDirty().
  1745. * TreeNodeBinding.cs: Added missing attributes. Implemented SetDirty().
  1746. * TreeNode.cs: Added missing attributes added support for
  1747. PopulateOnDemand. Added some missing property bindings.
  1748. * TreeNodeCollection.cs: Several minor fixes. SetDirty must be called
  1749. to newly added elements to make sure al new data is saved.
  1750. * TreeView.js: Implemented support for client population of nodes.
  1751. * TreeNodeStyle.cs: Added missing attributes.
  1752. * TreeView.cs: Implemented support for PopulateNodesFromClient and
  1753. PopulateOnDemand. Improved rendering.
  1754. 2004-11-29 Sanjay Gupta <[email protected]>
  1755. * DataControlField.cs:
  1756. * DataControlFieldCell.cs: Initial implementation.
  1757. 2004-11-26 Lluis Sanchez Gual <[email protected]>
  1758. * TreeNodeBindingCollection.cs: Implemented.
  1759. * TreeNodeBinding.cs: Implemented.
  1760. * TreeNode.cs: Added support for data binding.
  1761. * TreeView_Default_Collapse.gif, TreeView_Default_Expand.gif
  1762. TreeView_Default_NoExpand.gif: Moved to resources directory.
  1763. * ListControl.cs: Fixed api.
  1764. * XmlHierarchicalEnumerable.cs: Made internal.
  1765. * DataBoundControl.cs: Modified api to match latest ms.net.
  1766. * TreeView.js: New javascript file to support TreeView in the client.
  1767. * XmlDataSource.cs: Added missing attributes.
  1768. * HierarchicalDataBoundControl.cs: Mostly implemented.
  1769. * BaseDataBoundControl.cs: Mostly implemented.
  1770. * XmlHierarchyData.cs: Made internal.
  1771. * TreeView.cs: Mostly implemented. The major missing feature is
  1772. client side tree population.
  1773. 2004-11-25 Sanjay Gupta <[email protected]>
  1774. * BaseDataList.cs:
  1775. * DataBountControl.cs:
  1776. * Repeater.cs: Added SelectArguments property and updated.
  1777. * SiteMapDataSourceView.cs:
  1778. * SqlDataSourceView.cs:
  1779. * XmlDataSourceView.cs: Removed extra method, which was there to
  1780. keep things compiling.
  1781. 2004-11-23 Lluis Sanchez Gual <[email protected]>
  1782. * TreeNodeBindingCollection.cs, TreeNodeBinding.cs, TreeNode.cs,
  1783. TreeNodeCollection.cs, TreeNodeStyleCollection.cs, TreeNodeStyle.cs,
  1784. TreeView.cs: Initial implementation.
  1785. * DataBoundControl.cs: Set the correct base class.
  1786. * HierarchicalDataBoundControl.cs, BaseDataBoundControl.cs: Created stub.
  1787. * TreeNodeSelectAction.cs: Formatting.
  1788. * TreeView_Default_Collapse.gif, TreeView_Default_Expand.gif,
  1789. TreeView_Default_NoExpand.gif: TreeView images.
  1790. 2004-11-22 Sanjay Gupta <[email protected]>
  1791. * SqlDataSourceView.cs: Updated methods and added one property.
  1792. 2004-11-19 Sanjay Gupta <[email protected]>
  1793. * AccessDataSource.cs:
  1794. * SqlDataSourceView.cs: Implemented CreateDataSourceView () method.
  1795. 2004-11-19 Sanjay Gupta <[email protected]>
  1796. * SqlDataSource.cs: Updated call to constructor of SqlDataSourceView.cs.
  1797. * SqlDataSourceView.cs: Updated constructor.
  1798. 2004-11-19 Sanjay Gupta <[email protected]>
  1799. * AccessDataSourceView.cs: Added new class.
  1800. 2004-11-19 Sanjay Gupta <[email protected]>
  1801. * SqlDataSourceView.cs: Corrected exception handling in
  1802. ExecuteSelect method.
  1803. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  1804. * SiteMapHierarchicalDataSourceView.cs, SiteMapDataSource.cs: New files.
  1805. * SiteMapDataSourceView.cs: Minor fix.
  1806. 2004-11-18 Sanjay Gupta <[email protected]>
  1807. * SqlDataSourceView.cs: Updated ExecuteSelect method.
  1808. 2004-11-18 Sanjay Gupta <[email protected]>
  1809. * SqlDataSource.cs: Corrected Select method.
  1810. 2004-11-18 Sanjay Gupta <[email protected]>
  1811. * SqlDataSource.cs: Updated Select method definition.
  1812. * SqlDataSourceStatusEventArgs.cs: Updated class.
  1813. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  1814. * SqlDataSourceView.cs: Removed implementation of Events (it is inherited
  1815. from DataSourceView.cs).
  1816. 2004-11-10 Raja R Harinath <[email protected]>
  1817. * SqlDataSourceView.cs (Select): Add 'override' to make it compile.
  1818. 2004-11-05 Sanjay Gupta <[email protected]>
  1819. * SqlDataSource.cs: Corrected method calls.
  1820. * SqlDataSourceView.cs: Partial implementation of few methods.
  1821. 2004-10-25 Gonzalo Paniagua Javier <[email protected]>
  1822. * ListItemCollection.cs: fixed bug when indexing changed elements in
  1823. LoadViewState. Patch from Alois BĻlaška.
  1824. 2004-10-20 Sanjay Gupta <[email protected]>
  1825. * SiteMapDataSourceView.cs:
  1826. * SqlDataSourceView.cs:
  1827. * XmlDataSourceView.cs: Cosmetic changes because of modifications in
  1828. base class, DataSourceView. Changes are to keep things compiling.
  1829. 2004-10-19 Sanjay Gupta <[email protected]>
  1830. * SiteMapDataSourceView.cs: Corrected class definition and updated.
  1831. * XmlHierarchicalDataSourceView.cs: Modified according to changes in
  1832. base class.
  1833. 2004-10-14 Sanjay Gupta <[email protected]>
  1834. * AdRotator.cs: Updated.
  1835. 2004-10-12 Sanjay Gupta <[email protected]>
  1836. * AccessDataSource.cs: Updated.
  1837. 2004-10-08 Sanjay Gupta <[email protected]>
  1838. * ValidatedControlConverter.cs: Updated.
  1839. 2004-10-08 Sanjay Gupta <[email protected]>
  1840. * AssociatedControlConverter.cs: Implemented.
  1841. 2004-10-08 Sanjay Gupta <[email protected]>
  1842. * ControlIDConverter.cs: Initial implementation.
  1843. 2004-10-04 Sanjay Gupta <[email protected]>
  1844. * IButtonControl.cs: Corrected property name.
  1845. 2004-10-04 Sanjay Gupta <[email protected]>
  1846. * ParameterCollection.cs: Updated.
  1847. 2004-10-04 Sanjay Gupta <[email protected]>
  1848. * Parameter.cs: Updated and completed implementation.
  1849. 2004-10-01 Sanjay Gupta <[email protected]>
  1850. * ParameterCollection.cs: Resolved warnings, "Unreachable code detected"
  1851. while compilation.
  1852. 2004-10-01 Sanjay Gupta <[email protected]>
  1853. * AccessDataSource.cs: Initial implementation.
  1854. 2004-09-30 Sanjay Gupta <[email protected]>
  1855. * DataControlRowState.cs:
  1856. * ScrollBars.cs:
  1857. * TreeNodeTypes.cs: Added attribute.
  1858. * DataControlRowType.cs:
  1859. * HotSpotMode.cs:
  1860. * SortDirection.cs: Corrected enumeration values.
  1861. * TableRowSection.cs: Added new enumeration.
  1862. * ObjectDataSourceStatusEventHandler.cs: Corrected method name.
  1863. 2004-09-28 Gonzalo Paniagua Javier <[email protected]>
  1864. * TableStyle.cs: don't render empty 'rules' attribute (again).
  1865. 2004-09-21 Sanjay Gupta <[email protected]>
  1866. * FormViewUpdatedEventArgs.cs: Spelling mistake.
  1867. 2004-09-14 Sanjay Gupta <[email protected]>
  1868. * Literal.cs: Added new method Focus().
  1869. 2004-09-12 Gonzalo Paniagua Javier <[email protected]>
  1870. * RadioButton.cs: fix GroupName when the control is inside a
  1871. NamingContainer different from Page. Closes bug #65586.
  1872. 2004-09-07 Sanjay Gupta <[email protected]>
  1873. * Localize.cs: Added new class.
  1874. 2004-09-03 Gaurav Vaish <gvaish_mono AT lycos.com>
  1875. * CompositeControl.cs : Completed
  1876. * Login.cs : Initial implementation.
  1877. 2004-09-01 Gonzalo Paniagua Javier <[email protected]>
  1878. * Xml.cs: fixed get_DocumentContent (it was returning "" always!) and
  1879. don't call MapPathSecure on the content itself.
  1880. * XmlBuilder.cs: handle XML documents written inside asp:xml. The
  1881. document is checked at parse time and will be checked again at run time.
  1882. Fixes bug #63828.
  1883. 2004-08-31 Sanjay Gupta <[email protected]>
  1884. * AuthenticateEventHandler.cs:
  1885. * CreateUserErrorEventArgs.cs:
  1886. * CreateUserErrorEventHandler.cs:
  1887. * DetailsViewCommandEventHandler.cs:
  1888. * DetailsViewDeleteEventArgs.cs:
  1889. * DetailsViewDeleteEventHandler.cs:
  1890. * DetailsViewDeletedEventArgs.cs:
  1891. * DetailsViewDeletedEventHandler.cs:
  1892. * DetailsViewInsertEventArgs.cs:
  1893. * DetailsViewInsertEventHandler.cs:
  1894. * DetailsViewInsertedEventArgs.cs:
  1895. * DetailsViewInsertedEventHandler.cs:
  1896. * DetailsViewModeEventArgs.cs:
  1897. * DetailsViewModeEventHandler.cs:
  1898. * DetailsViewPageEventHandler.cs:
  1899. * DetailsViewUpdateEventArgs.cs:
  1900. * DetailsViewUpdateEventHandler.cs:
  1901. * DetailsViewUpdatedEventArgs.cs:
  1902. * DetailsViewUpdatedEventHandler.cs:
  1903. * FormViewCommandEventHandler.cs:
  1904. * FormViewDeleteEventArgs.cs:
  1905. * FormViewDeleteEventHandler.cs:
  1906. * FormViewDeletedEventArgs.cs:
  1907. * FormViewDeletedEventHandler.cs:
  1908. * FormViewInsertEventArgs.cs:
  1909. * FormViewInsertEventHandler.cs:
  1910. * FormViewInsertedEventArgs.cs:
  1911. * FormViewInsertedEventHandler.cs:
  1912. * FormViewModeEventHandler.cs:
  1913. * FormViewPageEventHandler.cs:
  1914. * FormViewUpdateEventArgs.cs:
  1915. * FormViewUpdateEventHandler.cs:
  1916. * FormViewUpdatedEventArgs.cs:
  1917. * FormViewUpdatedEventHandler.cs:
  1918. * GridViewCancelEditEventArgs.cs:
  1919. * GridViewCancelEditEventHandler.cs:
  1920. * GridViewCommandEventHandler.cs:
  1921. * GridViewDeleteEventArgs.cs:
  1922. * GridViewDeleteEventHandler.cs:
  1923. * GridViewDeletedEventArgs.cs:
  1924. * GridViewDeletedEventHandler.cs:
  1925. * GridViewEditEventHandler.cs:
  1926. * GridViewPageEventHandler.cs:
  1927. * GridViewRowEventHandler.cs:
  1928. * GridViewSelectEventHandler.cs:
  1929. * GridViewSortEventArgs.cs:
  1930. * GridViewSortEventHandler.cs:
  1931. * GridViewUpdateEventArgs.cs:
  1932. * GridViewUpdateEventHandler.cs:
  1933. * GridViewUpdatedEventArgs.cs:
  1934. * GridViewUpdatedEventHandler.cs:
  1935. * ImageMapEventHandler.cs:
  1936. * MailMessageEventHandler.cs:
  1937. * MenuEventHandler.cs:
  1938. * ObjectDataSourceDisposingEventHandler.cs:
  1939. * ObjectDataSourceEventHandler.cs:
  1940. * ObjectDataSourceMethodEventArgs.cs:
  1941. * ObjectDataSourceMethodEventHandler.cs:
  1942. * ObjectDataSourceSelectingEventArgs.cs:
  1943. * ObjectDataSourceSelectingEventHandler.cs:
  1944. * ObjectDataSourceStatusEventArgs.cs:
  1945. * ObjectDataSourceStatusEventHandler.cs:
  1946. * SendMailErrorEventHandler.cs:
  1947. * SiteMapNodeItemEventHandler.cs:
  1948. * SqlDataSourceSelectingEventArgs.cs:
  1949. * SqlDataSourceSelectingEventHandler.cs:
  1950. * TreeNodeEventHandler.cs:
  1951. * WizardNavigationEventArgs.cs:
  1952. * WizardNavigationEventHandler.cs: Minor modifications, compiler error
  1953. corrections and removing "sealed" access specifier from *EventHandler.cs
  1954. 2004-08-18 Sanjay Gupta <[email protected]>
  1955. * Literal.cs: Added new attributes and property for .Net 2.0
  1956. 2004-08-13 Sanjay Gupta <[email protected]>
  1957. * GridViewDeleteEventArgs.cs: Removed extra code.
  1958. 2004-08-12 Sanjay Gupta <[email protected]>
  1959. * SendMailErrorEventArgs.cs:
  1960. * SendMailErrorEventHandler.cs:
  1961. * SiteMapNodeItemEventArgs.cs:
  1962. * SiteMapNodeItemEventHandler.cs:
  1963. * SqlDataSourceSelectingEventArgs.cs:
  1964. * SqlDataSourceSelectingEventHandler.cs:
  1965. * TreeNodeEventArgs.cs:
  1966. * TreeNodeEventHandler.cs:
  1967. * WizardNavigationEventArgs.cs:
  1968. * WizardNavigationEventHandler.cs: Added new delegates.
  1969. 2004-08-11 Sanjay Gupta <[email protected]>
  1970. * ImageMapEventArgs.cs:
  1971. * ImageMapEventHandler.cs:
  1972. * MailMessageEventArgs.cs:
  1973. * MailMessageEventHandler.cs:
  1974. * MenuEventArgs.cs:
  1975. * MenuEventHandler.cs:
  1976. * ObjectDataSourceDisposingEventArgs.cs:
  1977. * ObjectDataSourceDisposingEventHandler.cs:
  1978. * ObjectDataSourceEventArgs.cs:
  1979. * ObjectDataSourceEventHandler.cs:
  1980. * ObjectDataSourceMethodEventArgs.cs:
  1981. * ObjectDataSourceMethodEventHandler.cs:
  1982. * ObjectDataSourceSelectingEventArgs.cs:
  1983. * ObjectDataSourceSelectingEventHandler.cs:
  1984. * ObjectDataSourceStatusEventArgs.cs:
  1985. * ObjectDataSourceStatusEventHandler.cs: Added new delegates.
  1986. 2004-08-11 Sanjay Gupta <[email protected]>
  1987. * DetailsViewCommandEventArgs.cs:
  1988. * FormViewCommandEventArgs.cs:
  1989. * GridViewCommandEventArgs.cs: Corrected constructor.
  1990. 2004-08-11 Sanjay Gupta <[email protected]>
  1991. * GridViewCancelEditEventArgs.cs:
  1992. * GridViewCancelEditEventHandler.cs:
  1993. * GridViewCommandEventArgs.cs:
  1994. * GridViewCommandEventHandler.cs:
  1995. * GridViewDeletedEventArgs.cs:
  1996. * GridViewDeletedEventHandler.cs:
  1997. * GridViewDeleteEventArgs.cs:
  1998. * GridViewDeleteEventHandler.cs:
  1999. * GridViewEditEventArgs.cs:
  2000. * GridViewEditEventHandler.cs:
  2001. * GridViewPageEventArgs.cs:
  2002. * GridViewPageEventHandler.cs:
  2003. * GridViewRowEventArgs.cs:
  2004. * GridViewRowEventHandler.cs:
  2005. * GridViewSelectEventArgs.cs:
  2006. * GridViewSelectEventHandler.cs:
  2007. * GridViewSortEventArgs.cs:
  2008. * GridViewSortEventHandler.cs:
  2009. * GridViewUpdatedEventArgs.cs:
  2010. * GridViewUpdatedEventHandler.cs:
  2011. * GridViewUpdateEventArgs.cs:
  2012. * GridViewUpdateEventHandler.cs: Added new delegates.
  2013. 2004-08-11 Sanjay Gupta <[email protected]>
  2014. * FormViewUpdatedEventArgs.cs: Corrected constructor.
  2015. 2004-08-11 Sanjay Gupta <[email protected]>
  2016. * FormViewCommandEventArgs.cs: Corrected name of class.
  2017. 2004-08-10 Gonzalo Paniagua Javier <[email protected]>
  2018. * Xml.cs: use MapPath in DocumentSource and documentContent. Fixes
  2019. bug #62726.
  2020. 2004-08-10 Sanjay Gupta <[email protected]>
  2021. * FormViewCommandEventArgs.cs:
  2022. * FormViewCommandEventHandler.cs:
  2023. * FormViewDeletedEventArgs.cs:
  2024. * FormViewDeletedEventHandler.cs:
  2025. * FormViewDeleteEventArgs.cs:
  2026. * FormViewDeleteEventHandler.cs:
  2027. * FormViewInsertedEventArgs.cs:
  2028. * FormViewInsertedEventHandler.cs:
  2029. * FormViewInsertEventArgs.cs:
  2030. * FormViewInsertEventHandler.cs:
  2031. * FormViewModeEventArgs.cs:
  2032. * FormViewModeEventHandler.cs:
  2033. * FormViewPageEventArgs.cs:
  2034. * FormViewPageEventHandler.cs:
  2035. * FormViewUpdatedEventArgs.cs:
  2036. * FormViewUpdatedEventHandler.cs:
  2037. * FormViewUpdateEventArgs.cs:
  2038. * FormViewUpdateEventHandler.cs: Added new delegates.
  2039. 2004-08-10 Sanjay Gupta <[email protected]>
  2040. * DetailsViewCommandEventArgs.cs:
  2041. * DetailsViewCommandEventHandler.cs:
  2042. * DetailsViewDeletedEventArgs.cs:
  2043. * DetailsViewDeletedEventHandler.cs:
  2044. * DetailsViewDeleteEventArgs.cs:
  2045. * DetailsViewDeleteEventHandler.cs:
  2046. * DetailsViewInsertedEventArgs.cs:
  2047. * DetailsViewInsertedEventHandler.cs:
  2048. * DetailsViewInsertEventArgs.cs:
  2049. * DetailsViewInsertEventHandler.cs:
  2050. * DetailsViewModeEventArgs.cs:
  2051. * DetailsViewModeEventHandler.cs:
  2052. * DetailsViewPageEventArgs.cs:
  2053. * DetailsViewPageEventHandler.cs:
  2054. * DetailsViewUpdatedEventArgs.cs:
  2055. * DetailsViewUpdatedEventHandler.cs:
  2056. * DetailsViewUpdateEventArgs.cs:
  2057. * DetailsViewUpdateEventHandler.cs: Added new delegates.
  2058. 2004-08-09 Sanjay Gupta <[email protected]>
  2059. * AuthenticateEventArgs.cs:
  2060. * AuthenticateEventHandler.cs:
  2061. * CreateUserErrorEventArgs.cs:
  2062. * CreateUserErrorEventHandler.cs: Added new delegates.
  2063. 2004-08-05 Sanjay Gupta <[email protected]>
  2064. * IButtonControl.cs:
  2065. * ICallbackContainer.cs:
  2066. * ICompositeControlDesignerAccessor.cs:
  2067. * IPostBackContainer.cs: Added new interfaces.
  2068. 2004-08-03 Sanjay Gupta <[email protected]>
  2069. * AdType.cs:
  2070. * AutoCompleteType.cs:
  2071. * ContentDirection.cs:
  2072. * DataControlCellType.cs:
  2073. * DataControlRowState.cs:
  2074. * DataControlRowType.cs:
  2075. * DetailsViewMode.cs:
  2076. * DynamicImageParameterMode.cs:
  2077. * FormViewMode.cs:
  2078. * HotSpotMode.cs:
  2079. * ImageFieldMode.cs:
  2080. * LiteralMode.cs:
  2081. * LogoutAction.cs:
  2082. * Orientation.cs:
  2083. * PagerButtons.cs:
  2084. * PathDirection.cs:
  2085. * ScrollBars.cs:
  2086. * SiteMapNodeItemType.cs:
  2087. * SiteMapNodeType.cs:
  2088. * SiteMapViewType.cs:
  2089. * SortDirection.cs:
  2090. * TableCaptionAlign.cs:
  2091. * TableHeaderScope.cs:
  2092. * TableViewMode.cs:
  2093. * TreeNodeSelectAction.cs:
  2094. * TreeNodeTypes.cs:
  2095. * TreeViewImageSet.cs:
  2096. * WizardStepType.cs: Added enumerations
  2097. 2004-08-02 Duncan Mak <[email protected]>
  2098. * ButtonType.cs:
  2099. * LoginFailureAction.cs:
  2100. * LoginTextLayout.cs: Added enumerations.
  2101. 2004-07-29 Gonzalo Paniagua Javier <[email protected]>
  2102. * BaseValidator.cs: in Validate(), when the control is not visible or
  2103. enabled, return inmediately after setting IsValid to true. Fixes bug
  2104. #61831.
  2105. 2004-07-27 Gonzalo Paniagua Javier <[email protected]>
  2106. * DataList.cs: s/HasChildren/HasControls()/.
  2107. 2004-07-27 Gonzalo Paniagua Javier <[email protected]>
  2108. * DataList.cs: style.
  2109. 2004-07-27 Alon Gazit <[email protected]>
  2110. * DataList.cs: Replaced foreach statement with for statement,
  2111. in order to improve performence.
  2112. 2004-07-27 Alon Gazit <[email protected]>
  2113. * WebControl.cs: changed RenderBeginTag()to use TagKey instead of
  2114. TagName.
  2115. * Unit.cs : changed GetTypeFromString() and GetStringFromPixel() to use
  2116. switch statements in order to improve performance.
  2117. 2004-06-10 Alon Gazit <[email protected]>
  2118. * WebControl.cs: fixed LoadViewState().
  2119. Creates new attributes state bag only when the current is null.
  2120. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  2121. * Calendar.cs: implemented OnPreRender and HasWeekSelectors.
  2122. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  2123. * Calendar.cs: set the title class attribute if we have it. Fixes bug
  2124. 53671.
  2125. 2004-06-04 Gonzalo Paniagua Javier <[email protected]>
  2126. * Style.cs: added SetBit.
  2127. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  2128. * Calendar.cs:
  2129. * CompareValidator.cs:
  2130. * ImageButton.cs:
  2131. * Style.cs:
  2132. * WebControl.cs: Added protected missing members and attributes.
  2133. 2004-05-18 Gonzalo Paniagua Javier <[email protected]>
  2134. * TextBox.cs: don't save the Text if in ViewState if it's a password.
  2135. Save it if the control is not visible or not enabled. Fixes bug #58497.
  2136. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  2137. * Calendar.cs: fire OnDayRender after assigning the calendar cell text.
  2138. Fixes bug #58097.
  2139. 2004-05-09 Gert Driesen ([email protected])
  2140. * Parameter.cs:
  2141. * SqlDataSourceCommandEventArgs:
  2142. * XmlDataSource.cs : removed temporary workarounds for CLS
  2143. compliance as System.Data is now CLS compliant
  2144. 2004-05-06 Alon Gazit <[email protected]>
  2145. * WebControl.cs: fixed LoadViewState() and SaveViewState().
  2146. Before the change the Enabled property wasn't updated when a postback
  2147. event was raised.
  2148. * ListControl.cs: fixed SelectedIndex property implementation.
  2149. Prevents throwing ArgumentOutOfRangeException (that should not be
  2150. thrown), when the list is empty.
  2151. 2004-04-28 Alon Gazit <[email protected]>
  2152. * WebControl.cs: fixed LoadViewState().
  2153. Always loading the saved attributes collection.
  2154. 2004-04-18 Alon Gazit <[email protected]>
  2155. * Repeater.cs: fixed InstantiateItem() and DataSource property.
  2156. The change in DataSource prevents throwing ArgumentException while
  2157. setting property value to null.
  2158. The change in InstantiateItem() prevents NullReferenceException.
  2159. 2004-04-07 Lluis Sanchez Gual <[email protected]>
  2160. * BaseValidator.cs: Store Display property in the correct ViewState
  2161. property. Don't render anything if Display is ValidatorDisplay.None.
  2162. 2004-03-30 Lluis Sanchez Gual <[email protected]>
  2163. * Xml.cs: In LoadXpathDoc(), don't use MapPathSecure with documentSource,
  2164. since it is already a physical path. Fixes bug #55334.
  2165. 2004-02-13 Jackson Harper <[email protected]>
  2166. * Calendar.cs: Match MS postback data. This allows sites that
  2167. parse the postback data manually to work.
  2168. 2004-02-04 Alon Gazit <[email protected]>
  2169. * EditCommandColumn.cs: fixed InitializeCell().
  2170. The rendered LiteralControl should contain "&nbsp;" and not " ".
  2171. 2004-02-01 Alon Gazit <[email protected]>
  2172. * DataGrid.cs: fixed a problem in the paging mechanism in the method
  2173. InitializePager().
  2174. the problem was when (PagerStyle.Mode == PagerMode.NumericPages),
  2175. while clicking the "..." link in the second page.
  2176. 2004-01-28 Alon Gazit <[email protected]>
  2177. * Calendar.cs: prevent NullReferenceException in RenderAllDays().
  2178. 2004-01-27 Gonzalo Paniagua Javier <[email protected]>
  2179. * Calendar.cs: when rendering days, add a LiteralControl containing the
  2180. day before OnDayRender is called. Only generate the default links for
  2181. days when IsSelectable is true after OnDayRender. Fixes bug #53372.
  2182. 2004-01-21 Martin Baulig <[email protected]>
  2183. * XmlHierarchyData.cs: Make this compile with csc.
  2184. * BulletedList.cs (BulletedList.SelectedItem): Removed the `set'
  2185. accessor since the base class doesn't have one.
  2186. 2004-01-18 Alon Gazit <[email protected]>
  2187. * CheckBoxList.cs: fix problem with negative TabIndex (wasn't rendered).
  2188. 2004-01-18 Alon Gazit <[email protected]>
  2189. * Style.cs: CopyFrom method shouldn't copy a value that is equal to
  2190. Property default value.
  2191. * FontInfo.cs : CopyFrom method shouldn't copy a value that is equal to
  2192. Property default value.
  2193. 2004-01-15 Alon Gazit <[email protected]>
  2194. * RadioButtonList.cs: RepeatLayout property should affect the rendered
  2195. html.
  2196. 2004-01-15 Alon Gazit <[email protected]>
  2197. * FontInfo.cs: Add validation check to Size property.
  2198. 2004-01-07 Alon Gazit <[email protected]>
  2199. * DataGrid.cs: Fixed PrepareControlHierarchyForItem().
  2200. merge the column's style to the cell's style and not to
  2201. the item's(row) style.
  2202. 2004-01-04 Alon Gazit <[email protected]>
  2203. * RangeValidator.cs: Fixed ControlPropertiesValid().
  2204. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  2205. * Xml.cs: mono-stylized and removed warnings.
  2206. 2004-1-1 Alon Gazit <[email protected]>
  2207. * RadioButtonList.cs: update RenderItem() so that each RadioButton
  2208. is enabled or disabled like the RadioButtonList.
  2209. * CheckBoxList.cs: update RenderItem() so that each CheckBox
  2210. is enabled or disabled like the CheckBoxList.
  2211. 2004-1-1 Alon Gazit <[email protected]>
  2212. * DataGrid.cs: Fixed PrepareControlHierarchyForItem().
  2213. The Header or Footer Style shouldn't merge with the cells Style.
  2214. 2004-1-1 Alon Gazit <[email protected]>
  2215. * DataGridColumn.cs: Headers and Footers are initialized
  2216. with the relevant Style object.
  2217. 2003-12-30 Alon Gazit <[email protected]>
  2218. * RepeatInfo.cs: Fixed DoVerticalRendering () and
  2219. DoHorizontalRendering().
  2220. Current implementation produces few extra html tags.
  2221. 2003-12-29 Alon Gazit <[email protected]>
  2222. * CheckBox.cs: change the implementation of LoadPostData.
  2223. Currently, while the AutoPostBack property equals true ,
  2224. it isn't possible to perform uncheck.
  2225. 2003-12-19 Jackson Harper <[email protected]>
  2226. * TableCell.cs: Setting a cells text should clear its control
  2227. collection as per la specification. This fixes bug #51825.
  2228. 2003-12-18 Gonzalo Paniagua Javier <[email protected]>
  2229. * DataGridColumn.cs: stylized LoadViewState.
  2230. * DataGridColumnCollection.cs: when TrackViewState is called, also
  2231. call it on all the existing columns. Fixes bug #52334.
  2232. 2003-12-18 Alon Gazit <[email protected]>
  2233. * DataGridPagerStyle.cs: merge DataGridPagerStyle properties when Style
  2234. is empty.
  2235. 2003-12-18 Alon Gazit <[email protected]>
  2236. * TableStyle.cs: merge TableStyle properties when Style is empty.
  2237. 2003-12-16 Alon Gazit <[email protected]>
  2238. * HyperLink.cs: Change Text property implementation. in MS when the Text
  2239. property is set, all the controls in the HyperLink are being deleted.
  2240. This fixes bug #52239.
  2241. 2003-12-15 Alon Gazit <[email protected]>
  2242. * RepeatInfo.cs: Fixed DoVerticalRendering () and
  2243. DoHorizontalRendering().
  2244. Both methods add additional empty table row in the head of each item
  2245. table when the variable named isTable equals true (happenes with the
  2246. default instantiation of RepeatInfo). These additional rows should be
  2247. added when isTable equals false.
  2248. This fixes bug #52225.
  2249. 2003-12-15 Alon Gazit <[email protected]>
  2250. * RepeatInfo.cs: Fixed DoVerticalRendering() and
  2251. DoHorizontalRendering().
  2252. Both methods add to rendered Header a colspan attribute according to the
  2253. rows count. after the change the colspan is added according to the
  2254. columns count.
  2255. 2003-12-15 Alon Gazit <[email protected]>
  2256. * CheckBox.cs: Disabled CheckBox does not produce same HTML as .NET.
  2257. In .NET if the checkbox is disabled ,its text appears disabled too.
  2258. In Mono the text appears enabled. the fix is in Render().
  2259. This fixes bug #52180.
  2260. 2003-12-15 Alon Gazit <[email protected]>
  2261. * Repeater.cs: Change the implementation of CreateControlHierarchy().
  2262. The current implementation renders extra Header and footer
  2263. without Repeater.DataSource assign.
  2264. This fixes bug #52179.
  2265. 2003-12-15 Alon Gazit <[email protected]>
  2266. * DataGrid.cs: Change the implementation of the property
  2267. BackImageUrl. The current implementation has no influence
  2268. on the rendered Html.
  2269. 2003-12-15 Alon Gazit <[email protected]>
  2270. * WebControl.cs: Change the implementation of the property
  2271. Enabled. Before the change the WebControl also looked at
  2272. parent.Enabled . fixed bug #52171.
  2273. 2003-12-11 Jackson Harper <[email protected]>
  2274. * RepeatInfo.cs: When rendering vertically figure out how many
  2275. colmns are not going to be filled in in the last row, and adjust
  2276. things accordingly. This fixes bug #51863.
  2277. 2003-12-10 Alon Gazit <[email protected]>
  2278. * TableRow.cs: Change the implementation of the properties
  2279. HorizontalAlign and VerticalAlign. The current implementation
  2280. has no influence on the rendered Html.
  2281. 2003-12-10 Alon Gazit <[email protected]>
  2282. * TableItemStyle.cs: Add setting of The WRAP flag in the Wrap
  2283. property's set method.
  2284. 2003-12-09 Jackson Harper <[email protected]>
  2285. * PagedDataSource.cs (PrivateICollectionEnumerator.MoveNext):
  2286. Increment counter when moving to start. Fixes bug #51926.
  2287. 2003-12-08 Jackson Harper <[email protected]>
  2288. * HyperLinkColumn.cs: Fix navigate url rendering. Patch by
  2289. Benjamin Jemlich. Fixes bug #51823.
  2290. 2003-12-07 Alon Gazit <[email protected]>
  2291. * Panel.cs: Panel doesn't render nowrap attribute while the Wrap
  2292. property is set to false. Fixes bug #58120.
  2293. 2003-12-04 Gonzalo Paniagua Javier <[email protected]>
  2294. * TableItemStyle.cs: merge TableItemStyle properties when Style is
  2295. empty. Fixes bug #51689. Patch by Alon Gazit <[email protected]>.
  2296. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  2297. * RadioButtonList.cs: render tabindex attribute if needed. Fixes bug
  2298. #51648.
  2299. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  2300. * WebControl.cs: don't create the attributes when GetAttribute is
  2301. called.
  2302. 2003-12-01 Jackson Harper <[email protected]>
  2303. * WebControl.cs: Only allow access keys to be null or a single
  2304. char. Patch by Alon Gazit <[email protected]>.
  2305. 2003-11-30 Jackson Harper <[email protected]>
  2306. * CheckBoxList.cs: A checkbox will have null post data if it is
  2307. unselected. This fixes bug #51516.
  2308. 2003-11-29 Jackson Harper <[email protected]>
  2309. * DataGrid.cs: Display paging controls even when there is no
  2310. data. Path by Mohammad DAMT. Fixes bug #51487.
  2311. 2003-11-29 Jackson Harper <[email protected]>
  2312. * DataGrid.cs: Call TrackViewState when loading bound columns view
  2313. state. So that their state is saved. This fixes bug #51424. Also
  2314. set ReadOnly.
  2315. 2003-11-26 Jackson Harper <[email protected]>
  2316. * BaseDataList.cs: Change && to || We will call that a typo so no
  2317. one gets embarrased.
  2318. 2003-11-24 Gonzalo Paniagua Javier <[email protected]>
  2319. * BaseDataList.cs: allow setting null as Datasource.
  2320. * DataGrid.cs: keep autogenerated columns in the ViewState.
  2321. Patches by Alon Gazit <[email protected]>.
  2322. 2003-11-22 Ben Maurer <[email protected]>
  2323. * SqlDataSource*: Implement almost everything. Data access is
  2324. still missing.
  2325. 2003-11-22 Ben Maurer <[email protected]>
  2326. * Calendar.cs (SaveViewState):
  2327. - We were allocating a 11 item array, we only used 10 items,
  2328. so only allocate 10.
  2329. - We only need to save the selected dates if there are any.
  2330. * DataGrid.cs (SaveViewState):
  2331. * DataGridColumn.cs (SaveViewState):
  2332. * DataGridColumnCollection.cs (SaveViewState):
  2333. - Only return the array if there is anything in it
  2334. * Style.cs (SaveViewState):
  2335. - Only save the bits if there were changes.
  2336. * WebControl.cs (SaveViewState), (LoadViewState):
  2337. - Don't save Enabled into the viewstate here, we already
  2338. do it in the property. This just caused *EVERY* control
  2339. to have a non-null state, taking up lots of extra room
  2340. in the ViewState.
  2341. - The style will always be created with this control's
  2342. viewstate, so the style will always return null for the
  2343. viewstate. As such, we do not need to store it. We can
  2344. also reduce the triplet to a pair because of this.
  2345. 2003-11-22 Jackson Harper <[email protected]>
  2346. * ValidationSummary.cs: Fix number of messages and message array computation.
  2347. 2003-11-21 Andreas Nahr <[email protected]>
  2348. * Xml.cs: Corrected attribute
  2349. * XmlBuilder.cs: Added
  2350. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  2351. * Xml.cs: class status based fixes.
  2352. 2003-11-19 Jackson Harper <[email protected]>
  2353. * HyperLink.cs: Use ResolveUrl instead of ResolveBaseUrl.
  2354. 2003-11-19 Jackson Harper <[email protected]>
  2355. * HyperLink.cs: Use ResolveBaseUrl so that ~/ is interpreted as
  2356. teh applications base directory. This fixes bug #51092.
  2357. 2003-11-18 Todd Berman <[email protected]>
  2358. * ControlParameter.cs:
  2359. * CookieParameter.cs:
  2360. * FormParameter.cs:
  2361. * QueryStringParameter.cs:
  2362. * SessionParameter.cs: added public .ctor ()
  2363. * Parameter.cs: added public .ctor (), internal SetOwnerCollection
  2364. and handling, as well as internal ParameterValue for easy access.
  2365. NOTE: ParameterValue doesnt respect TreatEmptyStringAsNull yet.
  2366. * ParameterCollection.cs: implementation redux.
  2367. 2003-11-18 Todd Berman <[email protected]>
  2368. * ParameterCollection.cs: Implemented
  2369. * Parameter.cs: Added _owner, SetOwnerCollection and proper handling.
  2370. ToString () now matches asp.net
  2371. 2003-11-17 Ben Maurer <[email protected]>
  2372. * ControlParameter.cs:
  2373. * CookieParameter.cs:
  2374. * FormParameter.cs:
  2375. * Parameter.cs:
  2376. * QueryStringParameter.cs: New v2 files. Mostly
  2377. implemented, still need a few methods.
  2378. 2003-11-16 Gonzalo Paniagua Javier <[email protected]>
  2379. * ListItem.cs: prevent nullrefs ni Get/SetAttribute. Thanks to Alon
  2380. Gazit <[email protected]>.
  2381. 2003-11-13 Gonzalo Paniagua Javier <[email protected]>
  2382. * RadioButton.cs: fixed RenderInputTag for negative TabIndex values.
  2383. Patch by Alon Gazit <[email protected]>.
  2384. 2003-11-09 Ben Maurer <[email protected]>
  2385. * DataBoundControl.cs: Implement
  2386. * ListControl.cs: inherit from the above.
  2387. * Repeater.cs, BaseDataList.cs: should reset whenever we databind.
  2388. 2003-11-09 Ben Maurer <[email protected]>
  2389. * BaseDataList.cs:
  2390. * DataGrid.cs:
  2391. * DataList.cs:
  2392. * Repeater.cs: add v2 databinding stuff
  2393. * XmlDataSource.cs: make it load the xml.
  2394. 2003-11-09 Ben Maurer <[email protected]>
  2395. * XmlDataSource.cs:
  2396. * XmlDataSourceView.cs:
  2397. * XmlHierarchicalDataSourceView.cs:
  2398. * XmlHierarchicalEnumerable.cs:
  2399. * XmlHierarchyData.cs: Implement
  2400. 2003-11-08 Ben Maurer <[email protected]>
  2401. * SiteMapDataSourceView.cs: Implement.
  2402. 2003-11-07 Jackson Harper <[email protected]>
  2403. * ImageButton.cs: This is a workaround for bug #49819. It appears
  2404. that the .x and .y values are not being posted, and only the x
  2405. value is being posted with the ctrl's id as the key.
  2406. 2003-11-07 Jackson Harper <[email protected]>
  2407. * DataGrid.cs (CreateControlHierarchy): Current page index is
  2408. alolowed to equal page count. This prevents an exception being
  2409. thrown when both are zero.
  2410. 2003-11-06 Jackson Harper <[email protected]>
  2411. * ValidationSummary.cs: Add Render method. Patch by Yaron Shkop.
  2412. * BaseValidator.cs: Disable base control so the isValid flag is
  2413. not reset.
  2414. 2003-11-03 Jackson Harper <[email protected]>
  2415. * TemplateColumn.cs: Use the same renderer for selected items as
  2416. normal items. This fixes bug #49744.
  2417. 2003-11-03 Jackson Harper <[email protected]>
  2418. * DataList.cs:
  2419. * WebControl.cs: Fix argument out of range exceptions on
  2420. properties. Patch by Yaron Shkop.
  2421. 2003-11-03 Jackson Harper <[email protected]>
  2422. * TemplateColumn.cs: If the item is selected but there is no
  2423. editItemTemplate use the itemTemplate. This matches MS behvoir.
  2424. 2003-11-03 Jackson Harper <[email protected]>
  2425. * Repeater.cs: Always set alternating items to the AlternatingItem
  2426. type, when instantiating alternating items use the itemTemplate if
  2427. the alternatingItem template is null. This matches MS behavoir and
  2428. fixes bug #50157.
  2429. 2003-11-03 Jackson Harper <[email protected]>
  2430. * DataGridPagerStyle.cs: Name of view state attribute is
  2431. PagerVisible not Visible. Call owner.OnPagerChanged when the pager
  2432. visibility is changed. Patch by Yaron Shkop.
  2433. 2003-11-03 Jackson Harper <[email protected]>
  2434. * RepeatInfo.cs: When doing horizontal rendering use the repeat
  2435. columns as the number of columns in a row. This fixes bug #49016.
  2436. 2003-11-03 Jackson Harper <[email protected]>
  2437. * PagedDataSource.cs (PageCount): Return page count of 1 if there
  2438. paging is disabled. Patch by Yaron Shkop.
  2439. * PagedDataSource.cs (CopyTo): Improve. Patch by Yaron Shkop.
  2440. * TableStyle.cs (AddAttributesToRender): Render border style
  2441. collapse. Patch by Yaron Shkop.
  2442. * TableStyle.cs:
  2443. * TableItemStyle.cs:
  2444. * DataGridPagerStyle.cs: Call base copy and merge even if style is of
  2445. the wrong type. Patch by Yaron Shkop.
  2446. 2003-11-03 Jackson Harper <[email protected]>
  2447. * BoundColumn.cs: Render readonly columns. Patch by Mohammad DAMT.
  2448. 2003-11-02 Ben Maurer <[email protected]>
  2449. * BulletStyle.cs:
  2450. * BulletedListDisplayMode.cs:
  2451. * BulletedListEventHandler.cs:
  2452. * BulletedList.cs:
  2453. * BulletedListEventArgs.cs: V2 controls (yay!)
  2454. 2003-10-30 Jackson Harper <[email protected]>
  2455. * Repeater.cs: Throw an exception if the datasource is set to
  2456. something that does not implement either IListSource or
  2457. IEnumerable. This fixes bug #50155.
  2458. 2003-10-30 Jackson Harper <[email protected]>
  2459. * DataGridPagerStyle.cs: Do not allow page button counts to be set
  2460. to less then 1. Patch by Yaron Shkop. This fixes bug #50236.
  2461. 2003-10-29 Jackson Harper <[email protected]>
  2462. * ButtonColumn.cs: Format string and text to format were
  2463. inversed. This fixes bug #50171.
  2464. 2003-10-29 Jackson Harper <[email protected]>
  2465. * DataGridColumn.cs: If an item style is set apply it to the
  2466. cell. This fixes bug #50173.
  2467. 2003-10-29 Ben Maurer <[email protected]>
  2468. * HyperLinkColumn.cs: Patch by Yaron Shkop. Fixes #50234. Remove
  2469. old debugging value.
  2470. 2003-10-29 Jackson Harper <[email protected]>
  2471. * PagedDataSource.cs:
  2472. * DataGrid.cs: Patch by Mohammad DAMT. Do not go past the
  2473. end of the last page. Fixes bug #5085.
  2474. 2003-10-29 Jackson Harper <[email protected]>
  2475. * CheckBox.cs: Do not change the status of a checkbox when there
  2476. is no post data. This fixes bug #49091.
  2477. * CheckBoxList.cs: Do not change the status of the checkboxes when
  2478. there is no post data. This fixes bug #49093.
  2479. 2003-10-26 Ben Maurer <[email protected]>
  2480. * RadioButton.cs: Patch by Yaron Shkop. Enables disabling a
  2481. RadioButton. Fixes #50132
  2482. 2003-10-25 Ben Maurer <[email protected]>
  2483. * PagedDataSource.cs: Patch by Ivo Haamer. Typo prevented
  2484. paging from working. Fixes #48814.
  2485. 2003-10-25 Ben Maurer <[email protected]>
  2486. * DataGrid.cs: A few typos kept us from viewing datagrids
  2487. that were based on customized collections.
  2488. 2003-10-24 Ben Maurer <[email protected]>
  2489. * DataGridCommandEventArgs.cs: typo, cmdSrc was becoming origionalArgs.
  2490. 2003-10-23 Ben Maurer <[email protected]>
  2491. * Calendar.cs: render the next month button so that aligns to the
  2492. right.
  2493. 2003-10-23 Gonzalo Paniagua Javier <[email protected]>
  2494. * BaseCompareValidator.cs: splitted Convert. Fixed bug #49927. The fix
  2495. was just changing && by || after the first Match.
  2496. 2003-10-23 Gonzalo Paniagua Javier <[email protected]>
  2497. * Calendar.cs: apply header style in RenderHeader. Fixes bug #49144.
  2498. Patch by Yaron Shkop.
  2499. 2003-10-22 Gonzalo Paniagua Javier <[email protected]>
  2500. * DataGrid.cs: applied patch from Yaron Shkop ([email protected])
  2501. that fixes bug #49744. Now the selection doesn't lose its data.
  2502. 2003-10-21 Ben Maurer <[email protected]>
  2503. * EditCommandColumn.cs: Implement; fix #49736
  2504. 2003-10-21 Ben Maurer <[email protected]>
  2505. * ButtonColumn.cs: Use the DataGridLinkButton, so that we inherit
  2506. the forground color. bug #49738
  2507. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  2508. * Calendar.cs: fixed bug #49727.
  2509. 2003-10-18 Ben Maurer <[email protected]>
  2510. * TableStyle.cs: fix #49740.
  2511. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  2512. * SelectedDatesCollection.cs: fix by Yaron for bug #49698.
  2513. * ValidationSummary.cs: fixes bug #49669.
  2514. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  2515. * Calendar.cs: apply the calendar style to the new Table, not to itself.
  2516. Fixes #49406.
  2517. * CheckBox.cs: render the hidden fields if AutoPostBack.
  2518. * Style.cs: don't render empty width/height. Small improvement in
  2519. CopyFrom.
  2520. * Table.cs: fixed condition for border width.
  2521. * TableStyle.cs:
  2522. (CopyFrom): always call the base class to copy other attributes. Fixes
  2523. bug #49408. Don't render empty 'rules' attribute.
  2524. * WebControl.cs: track viewstate when enabled. Don't overwrite source
  2525. control attributes in CopyBaseAttributes.
  2526. * ChangeLog: fixed dates.
  2527. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  2528. * WebControl.cs : Attributes { get; } - Is Complete.
  2529. * ValidationSummary.cs : AddAttributesToRender(HtmlTextWriter)
  2530. - Completed.
  2531. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  2532. * BaseValidator.cs : DetermineRenderUplevel() - Completed.
  2533. : RegisterValidatorCommonScript()
  2534. - More code, I need HELP!
  2535. : RegisterValidatorDeclaration()
  2536. - More code, I need HELP!
  2537. 2003-09-29 Gonzalo Paniagua Javier <[email protected]>
  2538. * CheckBoxList.cs: don't lose state when enabling/disabling. See bug
  2539. #48802.
  2540. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  2541. * Repeater.cs: fixed bug #48807. It needed to use a DummyDataSource and
  2542. ClearViewState only called when no items.
  2543. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  2544. * RadioButtonList.cs: fix for bug #48874 by Yaron Shkop.
  2545. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  2546. * RadioButtonList.cs: fix for bug #48870 by Yaron Shkop.
  2547. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  2548. * DataList.cs: fixed bug #48217. Patch by [email protected] (Yaron
  2549. Shkop).
  2550. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  2551. * AdRotator.cs: fixes bug #48691. Patch by [email protected] (Yaron
  2552. Shkop).
  2553. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  2554. * CheckBox.cs: render the 'disabled' attribute in the correct tag.
  2555. * WebControl.cs: fixed Enabled property and save it in ViewState.
  2556. Fixes bug #48802.
  2557. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  2558. * ListControl.cs: fixed bug #48668. Thanks to Yaron Shkop.
  2559. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  2560. * ListBox.cs: patch by [email protected] (Yaron Shkop) that fixes
  2561. bug #48671.
  2562. 2003-09-19 Gonzalo Paniagua Javier <[email protected]>
  2563. * FontInfo.cs: fixed Name property as suggested by Rich Alimi
  2564. <[email protected]>.
  2565. 2003-09-14 Gonzalo Paniagua Javier <[email protected]>
  2566. * RegularExpressionValidator.cs: fix for EvaluateIsValid by Juraj
  2567. Skripsky <[email protected]>
  2568. 2003-09-13 Gonzalo Paniagua Javier <[email protected]>
  2569. * BaseValidator.cs: patch by Juraj Skripsky ([email protected]) that
  2570. fixes rendering of the end tag.
  2571. 2003-08-31 Gonzalo Paniagua Javier <[email protected]>
  2572. * Repeater.cs: fix for Items property provided by [email protected]
  2573. (Yaron Shkop). Closes bug #48060.
  2574. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  2575. * CheckBox.cs: in LoadPostData, only return
  2576. true when the new data is different from the one we had. Fixed
  2577. conditions to save Checked state. Thanks to [email protected]
  2578. (Yaron Shkop).
  2579. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  2580. * Style.cs: Font.Strikeout renders as 'line-through'. Fixes bug #47871.
  2581. 2003-08-25 Gonzalo Paniagua Javier <[email protected]>
  2582. * WebControl.cs: removed dangling ^M and unneeded fields. Keep track
  2583. of Enable in ViewState. Fixes bug #47865.
  2584. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  2585. * Style.cs: the MARKED bit is not send set in ViewState unless something
  2586. is changed. Fixed TrackViewState condition.
  2587. * WebControl.cs: save the base ViewState *after* ControlStyle is done,
  2588. because it uses the same ViewState as the control. Fixes bug #47725.
  2589. 2003-08-16 Gonzalo Paniagua Javier <[email protected]>
  2590. * HyperLinkColumn.cs: patch from David Pickens <[email protected]>
  2591. that fixes databinding when only DataTextField or DataNavigateUrlField
  2592. is set.
  2593. 2003-08-14 Gonzalo Paniagua Javier <[email protected]>
  2594. * ListControl.cs: patch sent by Yaacov Akiba Slama <[email protected]> on
  2595. behalf of Yaron Shkop <[email protected]> that fixes selection of
  2596. values before assigning a data source and other issues.
  2597. 2003-08-11 Gonzalo Paniagua Javier <[email protected]>
  2598. * CheckBox.cs: save viewstate when needed and correctly handle post
  2599. data. Fixes bug #47462.
  2600. 2003-08-01 Andreas Nahr <[email protected]>
  2601. * ButtonColumn.cs: Removed additional attributes
  2602. * CheckBox.cs: Added attribute
  2603. * DataGrid.cs: Added attributes
  2604. * HyperLinkColumn.cs: Changed attributes, added lamespec
  2605. * Style.cs: Removed attributes
  2606. * TextBox.cs: Added/ removed attributes
  2607. 2003-08-01 Andreas Nahr <[email protected]>
  2608. * AdRotator.cs: Added all attributes
  2609. * BaseDataList.cs: Added all attributes, added lamespec, removed additional attributes
  2610. * BaseValidator.cs: Added all attributes
  2611. * BoundColumn.cs: Added all attributes
  2612. * Button.cs: Added all attributes
  2613. * ButtonColumn.cs: Added all attributes, added lamespec
  2614. * Calendar.cs: Added all attributes, added error checks, throws more exceptions
  2615. * CheckBox.cs: Added all attributes
  2616. * CheckBoxList.cs: Added all attributes
  2617. * CompareValidator.cs: Added all attributes
  2618. * CustomValidator.cs: Added all attributes
  2619. * DataGrid.cs: Added all attributes, more verbose exceptions, fixed signature, removed additional attributes
  2620. * DataGridColumn.cs: Added all attributes
  2621. * DataGridColumnCollection.cs: Added all attributes
  2622. * DataGridPagerStyle.cs: Added all attributes
  2623. * DataGridTableInternal.cs: Made DataGridTableInternal internal
  2624. * DataList.cs: Added all attributes, more verbose exceptions, removed non-existing member
  2625. * DropDownList.cs: Added all attributes
  2626. * FontInfo.cs: Added all attributes
  2627. * HyperLink.cs: Added all attributes
  2628. * HyperLinkColumn.cs: Added all attributes
  2629. * Image.cs: Added all attributes
  2630. * ImageButton.cs: Added all attributes
  2631. * Label.cs: Added all attributes
  2632. * LinkButton.cs: Added all attributes
  2633. * ListBox.cs: Added all attributes, added error checks, throws more exceptions
  2634. * ListControl.cs: Added all attributes
  2635. * ListItem.cs: Added all attributes
  2636. * ListItemCollection.cs: Added attribute
  2637. * Literal.cs: Added all attributes
  2638. * Panel.cs: Added all attributes
  2639. * RadioButton.cs: Added all attributes
  2640. * RadioButtonList.cs: Added all attributes, added error checks, throws more exceptions
  2641. * RangeValidator.cs: Added all attributes
  2642. * RegularExpressionValidator.cs: Added all attributes
  2643. * Repeater.cs: Added all attributes
  2644. 2003-07-30 Andreas Nahr <[email protected]>
  2645. * RequiredFieldValidator.cs: Added all attributes
  2646. * Style.cs: Added all attributes
  2647. * Table.cs: Added all attributes
  2648. * TableCell.cs: Added all attributes, added error checks, throws more exceptions
  2649. * TableCellCollection.cs: Added attribute
  2650. * TableRow.cs: Added all attributes
  2651. * TableRowCollection: Added attribute
  2652. * TableStyle.cs: Added all attributes, improved error messages
  2653. * TemplateColumn.cs: Added all attributes
  2654. * TextBox.cs: Added all attributes, added error checks, throws more exceptions
  2655. * ValidationSummary.cs: Added all attributes
  2656. * WebControl.cs: Added all attributes
  2657. * Xml.cs: Added all attributes
  2658. 2003-07-30 Gonzalo Paniagua Javier <[email protected]>
  2659. * DataGrid.cs: fixed signature of ItemCreated and PageIndexChanged.
  2660. * DataList.cs: fixed signature of ItemCreated and ItemDataBound.
  2661. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  2662. * CheckBoxList.cs: fixes bug reported on the list about the state of
  2663. the CheckButtons not being preserved across posts.
  2664. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  2665. * ListControl.cs: added SelectedValue property (1.1). Closes 46412.
  2666. 2003-06-30 Gonzalo Paniagua Javier <[email protected]>
  2667. * AdRotator.cs: fixed bug #44271 and a few others bugs. Mono-stylized.
  2668. 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
  2669. * ListControl.cs: save viewstate data when any of the 3 values is not
  2670. null. Fixed condition to save selection indices. Closes bug #45493.
  2671. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  2672. * DataGrid.cs: fixed bug #43823.
  2673. 2003-05-29 Gonzalo Paniagua Javier <[email protected]>
  2674. * DataGrid.cs: fixed delegate type for SortCommand.
  2675. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  2676. * DataGridColumnCollection.cs: added missing return in RemoveAt.
  2677. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  2678. * DataGridColumnCollection.cs: fixed LoadViewState for the columns.
  2679. Don't save ViewState is the number of columns is 0.
  2680. 2003-05-02 Gonzalo Paniagua Javier <[email protected]>
  2681. * DataGrid.cs: get the right item Type for the property we're reading
  2682. fromt the data source.
  2683. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  2684. * Label.cs:
  2685. * TextBox.cs: added control builder attribute.
  2686. 2003-03-29 Gonzalo Paniagua Javier <[email protected]>
  2687. * DataGrid.cs: Fixed SaveViewState and type of ItemDataBound.
  2688. 2003-03-17 George Kodinov <[email protected]>
  2689. * Unit.cs: Called the correct method to get the Numeric locale for the
  2690. double conversion
  2691. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  2692. * ButtonColumn.cs: fixed a couple of infinite loop problems and render
  2693. correctly the header of the column.
  2694. * DataGridTableInternal.cs: don't assign a default ID to this control.
  2695. * LinkButton.cs: raise bubble event in OnCommand.
  2696. * TableCellCollection.cs: fixed the index returned by Add.
  2697. * TableRowCollection.cs: ditto.
  2698. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  2699. * Xml.cs: don't call MapPathSecure when setting DocumentSource.
  2700. 2003-02-05 Gonzalo Paniagua Javier <[email protected]>
  2701. * RangeValidator.cs: fixed bug #37577. Thanks to Stephane Tombeur
  2702. for reporting the bug and providing the fix.
  2703. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  2704. * DataGrid.cs: AutoGenerateColumns defaults to true. Fixed
  2705. CreateColumnSet. Set the owner of the column when auto generated.
  2706. In PrepareControlHierarchyForItem, fixed for loop bound.
  2707. * LinkButtonInternal.cs: fixed infinite recursion bug.
  2708. Fixes bug #37124.
  2709. 2003-01-22 Zdravko Tashev <[email protected]>
  2710. * Xml.cs: a few fixes.
  2711. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  2712. * DataList.cs: handle the exception when adding new keys to
  2713. DataKeysArray.
  2714. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  2715. * BaseDataList.cs: what can I say for this one? I spent so many time
  2716. until I finally found this that I'm gonna miss this f....g bug... ;-).
  2717. Farewell. Now we can get events from image buttons inside Data*.
  2718. * DataList.cs: now the value stored in ViewState for item count is
  2719. correct.
  2720. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  2721. * DataGrid.cs: default value for ShowHeaders is true. Fixed style for
  2722. Header and Footer.
  2723. * DataGridColumn.cs: added SetOwner method.
  2724. * DataGridColumnCollection.cs: set the owner of the column when added.
  2725. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  2726. * BoundColumn.cs: typo.
  2727. * DataGrid.cs: use 'as' instead of casting. Typo.
  2728. * HyperLinkColumn.cs: call OnColumnChanged when any property change.
  2729. Mono-stylized.
  2730. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  2731. * HyperLink.cs: fixes bug #36336.
  2732. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  2733. * DataList.cs: fixed IRepeatInfoUser.GetItemStyle.
  2734. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  2735. * BaseValidator.cs: return an empty string in GetControlValidationValue
  2736. when GetValue returned null.
  2737. * CompareValidator.cs: fixed EvaluateIsValid.
  2738. * RegularExpressionValidator.cs: fixed EvaluateIsValid.
  2739. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  2740. * Xml.cs: use MapPathSecure to get the path of the document.
  2741. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  2742. * DataList.cs: fixed header & footer.
  2743. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  2744. * DataList.cs: for header and footer don't use data source.
  2745. Instantiate in the DataListItem, not in the DataList.
  2746. databind-template.aspx works now.
  2747. 2002-11-21 Gonzalo Paniagua Javier <[email protected]>
  2748. * BaseDataList.cs:
  2749. (Render): call RenderContents (), not base.RenderContents ().
  2750. * DataList.cs: style.
  2751. But I still haven't found what i'm looking for....
  2752. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  2753. * Calendar.cs: fixed loading/saving selected dates.
  2754. * SelectedDatesCollection.cs: added internal function to get the
  2755. underlying ArrayList.
  2756. Calendar navigation works again. Selecting dates too.
  2757. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  2758. * DataList.cs: added a few attributes and fixed infinite recursion.
  2759. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  2760. * ListItemCollection.cs: fixed LoadViewState.
  2761. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  2762. * TableItemStyle.cs: TypeDescriptor.GetConverter seems to fail.
  2763. Commented out some code until it works.
  2764. 2002-10-29 Gaurav Vaish <[email protected]>
  2765. * BaseCompareValidator.cs - Fixed operator bug in
  2766. Compare(string, string, ...)
  2767. * CompareValidator.cs - EvaluateIsValid() : Implemented.
  2768. 2002-10-28 Gaurav Vaish <[email protected]>
  2769. * BoundColumn.cs - InitializeCell(TableCell, int, ListItemType)
  2770. : Implemented.
  2771. - All Properties : Now make use of ViewState.
  2772. 2002-10-28 Gaurav Vaish <[email protected]>
  2773. * BaseValidator.cs - Uncomment NotImplementedException.
  2774. 2002-10-28 Gaurav Vaish <[email protected]>
  2775. * BaseValidator.cs - Minor changes in TODO comments.
  2776. 2002-10-28 Gaurav Vaish <[email protected]>
  2777. * BaseValidator.cs - DetermineRenderUpLevel() : Uncomment
  2778. the NotImplementedException being thrown.
  2779. * DataGridPagerStyle.cs - Mode { set; } : Implemented.
  2780. * DataGridLinkButton.cs - Added new class (private) : Implemented.
  2781. * DataGrid.cs - InitializePager(DataGridItem, int,
  2782. PagedDataSource) : Implemented.
  2783. 2002-10-28 Gaurav Vaish <[email protected]>
  2784. * DataList.cs - PrepareControlHierarchy() : Implemented.
  2785. 2002-10-28 Gaurav Vaish <[email protected]>
  2786. * DataList.cs - RenderContents(HtmlTextWriter) : Implemented.
  2787. - GetItem(ListItemType, int) : Removed TODO.
  2788. - CreateControlHierarchy(bool) : Implemented.
  2789. - CreateItem(int, ListItemType) : Implemented.
  2790. - CreateItem(int, ListItemType,
  2791. bool, object) : Implemented.
  2792. - InitializeItem(DataItem) : Implemented.
  2793. * DataGrid.cs - CreateControlHierarchy(bool) : Bug fix.
  2794. The ViewState["_!ItemCount"],
  2795. ViewState["_!DataSource_ItemCount"]
  2796. are shared by DataList and DataGrid, and hence
  2797. should share the same name.
  2798. - ResolveDataSource(object, string)
  2799. : Removed. Use System.Web.UI.Utils.DataSourceHelper
  2800. ::GetResolvedDataSource(object, string).
  2801. 2002-09-12 Gonzalo Paniagua Javier <[email protected]>
  2802. * DataGrid.cs: fixed compilation
  2803. 2002-09-12 Gaurav Vaish <[email protected]>
  2804. * PagedDataSource.cs - FirstIndexInPage : Fixed bug.
  2805. * DataGrid.cs - CreateControlHierarchy(bool)
  2806. : working towards completion.
  2807. - ResolveDataSource(object, string)
  2808. : stubbed new method
  2809. - CreateItem(....)
  2810. : stubbed new method
  2811. Well. It's almost done.
  2812. * DataGridTableInternal.cs
  2813. - Added new internal class.
  2814. 2002-08-28 Gaurav Vaish <[email protected]>
  2815. * DataSourceInternal.cs - Added new class (internal).
  2816. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  2817. * FontUnit.cs:
  2818. * HorizontalAlign.cs:
  2819. * Unit.cs:
  2820. * VerticalAlign.cs: fixes based on class status page.
  2821. * HorizontalAlignConverter.cs: implemented.
  2822. * VerticalAlignConverter.cs: implemented.
  2823. * FontUnitConverter.cs: implemented GetStandardValues ().
  2824. * WebColorConverter.cs: implemented ConvertFrom () and ConvertTo ().
  2825. 2002-08-19 Gaurav Vaish <[email protected]>
  2826. * DataGrid.cs - AutoCreateColumns: Bug fixes.
  2827. 2002-08-19 Gaurav Vaish <[email protected]>
  2828. * DataGrid.cs - AutoCreateColumns: completed, hopefully!
  2829. 2002-08-19 Gaurav Vaish <[email protected]>
  2830. * DataGrid.cs - Working on the undocumented protected
  2831. method CreateColumnSet. AutoCreateColumns method
  2832. stubbed. Left CreateControlHierarchy for the time
  2833. being, looks like I'm going insane. ;-)
  2834. 2002-08-19 Gaurav Vaish <[email protected]>
  2835. * Button.cs - Steffen's OnCommand bug fix.
  2836. 2002-08-12 Gaurav Vaish <[email protected]>
  2837. * DataGrid.cs - Added protected method (skeleton)
  2838. CreateColumnSet(PagedDataSource, bool)
  2839. Still trying to know how will it be used
  2840. and what for...
  2841. 2002-08-10 Gonzalo Paniagua Javier <[email protected]>
  2842. * PagedDataSource.cs: fixed compilation.
  2843. 2002-08-08 Gaurav Vaish <[email protected]>
  2844. * DataGrid.cs - Added private method
  2845. CreatePagedDataSource
  2846. - Started work on
  2847. CreateControlHierarchy(bool)
  2848. * PagedDataSource.cs - Bug fixed.
  2849. CurrentPageIndex is writable.
  2850. 2002-08-07 Gonzalo Paniagua Javier <[email protected]>
  2851. * DataGrid.cs: fixed typo.
  2852. * DataGridPagerStyle.cs: added IsPagerOnTop and IsPagerOnBottom.
  2853. 2002-08-06 Gaurav Vaish <[email protected]>
  2854. * DataGridColumn.cs - Added internal methods to get the
  2855. various styles (needed in DataGrid.cs)
  2856. * DataGrid.cs - Completed the method
  2857. PrepareControlHierarchy()
  2858. 2002-08-06 Gaurav Vaish <[email protected]>
  2859. * DataGrid.cs - Wokring on PrepareControlHierarchy()
  2860. - Added private method
  2861. PrepareControlHierarchyForItem()
  2862. 2002-08-05 Gaurav Vaish <[email protected]>
  2863. * DataGrid.cs - Completed method
  2864. OnBubbleEvent(object, EventArgs)
  2865. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  2866. * Xml.cs: implemented document/transform load.
  2867. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  2868. * Calendar.cs: added myself to the list of authors.
  2869. * DropDownList.cs: fixed a few properties.
  2870. * ListControl.cs: fixed SelectedIndex.
  2871. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  2872. * Calendar.cs: lots of fixes. Render days. Still left to persist
  2873. selected days when changing month.
  2874. * Unit.cs: fixed Percentage and Pixel.
  2875. * WebControl.cs: a few properties are now using ControlStyle instead
  2876. of ViewState to persist.
  2877. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  2878. * BaseValidator.cs: it works now.
  2879. * DataGridColumn.cs: added attribute and made it abstract.
  2880. * RequiredFieldValidator.cs: fixed return value in EvaluateIsValid.
  2881. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  2882. * TextBox.cs: default for Wrap is true.
  2883. (OnPreRender): don't save Text if there are no listeners on TextChanged.
  2884. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  2885. * DropDownList.cs:
  2886. (ToolTip): fixed.
  2887. * ListItem.cs:
  2888. (LoadViewState): fixed.
  2889. * ListItemCollection.cs:
  2890. (TrackViewState): use items instead of 'this' in foreach.
  2891. * Style.cs:
  2892. (LoadViewState): more checking of parameters.
  2893. * WebControl.cs: implemented LoadViewState and SaveViewState.
  2894. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  2895. * ListItem.cs: there was no code to unset the flags!!!
  2896. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  2897. * FontUnit.cs: use a hashtable for mapping size name to value.
  2898. * HyperLink.cs: fixed a bug and a typo.
  2899. * Unit.cs: some fixes to internal constructor.
  2900. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  2901. * ListControl.cs: fixed a couple of range checks.
  2902. * WebControl.cs: MS lies! Not all WebControls must be rendered inside
  2903. an HtmlForm (p.e., Label).
  2904. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  2905. * AdRotator.cs:
  2906. * Button.cs:
  2907. * Calendar.cs:
  2908. * CheckBox.cs:
  2909. * CheckBoxList.cs:
  2910. * DataList.cs:
  2911. * DropDownList.cs:
  2912. * HyperLink.cs:
  2913. * HyperLinkColumn.cs:
  2914. * Image.cs:
  2915. * ImageButton.cs:
  2916. * Label.cs:
  2917. * LinkButton.cs:
  2918. * ListBox.cs:
  2919. * Panel.cs:
  2920. * PlaceHolder.cs:
  2921. * RadioButton.cs:
  2922. * RadioButtonList.cs:
  2923. * Table.cs:
  2924. * TableRow.cs:
  2925. * TextBox.cs:
  2926. * WebControl.cs: removed attributes added by mistake (i used
  2927. GetCustomAttributes (true), d'oh!).
  2928. * DataListItem.cs: implemented RenderItem.
  2929. * Repeater.cs: implemented CreateItem and InitializeItem.
  2930. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  2931. * BaseDataList.cs: a couple of fiex and added attributes.
  2932. * DataGrid.cs: little fixes.
  2933. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  2934. * CheckBoxList.cs:
  2935. * DataGrid.cs:
  2936. * DataList.cs:
  2937. * DropDownList.cs:
  2938. * ListBox.cs:
  2939. * PlaceHolder.cs:
  2940. * RadioButton.cs:
  2941. * RadioButtonList.cs:
  2942. * TableRow.cs:
  2943. * WebControl.cs:
  2944. * Xml.cs: forgot to add using System.ComponentModel.
  2945. * BaseValidator.cs: use explicitly
  2946. System.ComponentModel.AttributeCollection as there is another class
  2947. with the same name under System.Web.UI.
  2948. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  2949. * AdRotator.cs:
  2950. * Button.cs:
  2951. * Calendar.cs:
  2952. * CheckBox.cs:
  2953. * CheckBoxList.cs:
  2954. * DataGrid.cs:
  2955. * DataList.cs:
  2956. * DropDownList.cs:
  2957. * HyperLink.cs:
  2958. * Image.cs:
  2959. * ImageButton.cs:
  2960. * Label.cs:
  2961. * LinkButton.cs:
  2962. * ListBox.cs:
  2963. * Panel.cs:
  2964. * PlaceHolder.cs:
  2965. * RadioButton.cs:
  2966. * RadioButtonList.cs:
  2967. * Table.cs:
  2968. * TableRow.cs:
  2969. * TextBox.cs:
  2970. * WebControl.cs:
  2971. * Xml.cs: added/fixed all attributes used by xsp.
  2972. * BaseValidator.cs: some fixes.
  2973. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  2974. * Table.cs:
  2975. (AddAttributesToRender): correctly default to border=1.
  2976. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  2977. * AdRotator.cs:
  2978. (LoadAdFile): make the dictionary null after every iteration.
  2979. * LinkButton.cs:
  2980. * ListControl.cs:
  2981. * ListItem.cs: fixed warnings.
  2982. Mon Jul 1 16:23:15 CEST 2002 Paolo Molaro <[email protected]>
  2983. * Style.cs, TableRow.cs, DataListItem.cs: fix compilation.
  2984. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  2985. * DataGridColumn.cs:
  2986. * DataGridPagerStyle.cs:
  2987. * DataList.cs:
  2988. * DataListItem.cs:
  2989. * Image.cs:
  2990. * LinkButton.cs:
  2991. * ListControl.cs:
  2992. * ListItem.cs:
  2993. * ListItemCollection.cs:
  2994. * Repeater.cs:
  2995. * ServerValidateEventArgs.cs:
  2996. * Style.cs:
  2997. * TableRow.cs:
  2998. * WebControl.cs:
  2999. * Xml.cs: more class status page based changes.
  3000. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  3001. * Button.cs:
  3002. (.ctor): fixed to render the correct tag.
  3003. (IPostBAckEventHandler.RaisePostBackEvent): fixed.
  3004. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  3005. * WebControl.cs:
  3006. (AddAttributesToRender): call Page.VerifyRenderingInServerForm. All
  3007. WebControl derived classes should be rendered inside a HtmlForm.
  3008. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  3009. * Repeater.cs: implemented CreateControlHierarchy. Fixed some event
  3010. processing methods.
  3011. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  3012. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  3013. * RepeatInfo.cs: implemented DoHorizontalRendering.
  3014. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  3015. * System.Web.UI.WebControls/Repeater.cs:
  3016. (Controls):
  3017. (OnDataBinding): fixed stack overflow.
  3018. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  3019. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  3020. * RepeatInfo.cs: implemented DoHorizontalRendering.
  3021. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  3022. * WebControl.cs:
  3023. (CopyBaseAttributes): copy Attributes and don't throw exception.
  3024. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  3025. * ListBox.cs: mono-stylized.
  3026. (AddAttributesToRender): call parent class method.
  3027. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  3028. * Style.cs: fixed IsEmpty and Width.
  3029. * Table.cs: mono-stylized.
  3030. (TableRowControlCollection.AddAt): fixed.
  3031. (AddAttributesToRender): fixed.
  3032. * TableCell.cs: mono-stylized.
  3033. (.ctor): use PreventAutoID.
  3034. (AddAttributesToRender): fixed.
  3035. (AddParsedSubObject): fixed.
  3036. * TableRow.cs: mono-stylized. Added
  3037. ParseChildren attribute.
  3038. * TableStyle.cs:
  3039. (get_GridLine): fixed.
  3040. 2002-06-16 Gonzalo Paniagua Javier <[email protected]>
  3041. * Panel.cs: fixed stack overflow.
  3042. * Unit.cs: use Int32.Parse and Single.Parse instead of Int32Converter
  3043. and SingleConverter.
  3044. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  3045. * RadioButton.cs: mono-stylized and some little fixes.
  3046. * TextBox.cs: mono-stylized.
  3047. (MaxLength): fixed typo.
  3048. (AddAttributesToRender): don't render the text between the tags for
  3049. SingleLine, use value attribute for it. Don't render the text for
  3050. Password.
  3051. (OnPreRender): don't throw exception and call base.OnPreRender.
  3052. (Render): for MultiLine, render the text between the opening and
  3053. closing tags encoded as HTML.
  3054. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  3055. * ImageButton.cs:
  3056. (AddAttributesToRender): fixer another stack overflow.
  3057. * WebControl.cs:
  3058. (TagName): modified to use TagKey instead of tagKey as the property
  3059. can be overriden.
  3060. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  3061. * LinkButton.cs: mono-stylized.
  3062. (AddParsedSubObject):
  3063. (RenderControls): little fixes.
  3064. * WebControl.cs:
  3065. (AddAttributesToRender): fixed usage of IEnumerator.
  3066. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  3067. * Literal.cs: beautified.
  3068. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  3069. * Label.cs: beautified and fixed a couple of 'classic' bugs.
  3070. * WebControl.cs: use Span as default tag when no other provided in
  3071. constructor. That is what MS renders.
  3072. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  3073. * Button.cs:
  3074. (AddAttributesToRender): fixed (classic) stack overflow.
  3075. * CheckBox.cs: mono-stylized.
  3076. (AutoPostBack): fixed stack overflow.
  3077. (Render): fixed alignment issues. Also set the For attribute always
  3078. for the label.
  3079. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  3080. * AdRotator.cs: GetData does not work as it should, but now it returns
  3081. useful data (only the first ad in the file). Set the NavigateUrl
  3082. property in the hyperlink if available.
  3083. * HyperLink.cs: fixed constructor and a couple of stack overflows.
  3084. * Image.cs: added an attribute and fixed stack overflow.
  3085. * WebControl.cs:
  3086. (RenderBeginTag): fixed.
  3087. (TagName): don't call Enum.IsDefined twice.
  3088. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  3089. * WebControl.cs: added attributes PersistChildrenAttribute and
  3090. ParseChildrenAttribute.
  3091. 2002-05-24 Duncan Mak <[email protected]>
  3092. * DataGridItem.cs (SetItemType): Changed function signature to
  3093. match 1.0 spec.
  3094. * ListItemCollection.cs (this): Changes the visibility level of
  3095. the indexer.
  3096. * Repeater.cs (OnItemCommand):
  3097. (OnItemCreated):
  3098. (OnItemDataBound): Added necessary casts.
  3099. 2002-05-07 Duncan Mak <[email protected]>
  3100. * Button.cs (AddAttributesToRender):
  3101. * ImageButton.cs (AddAttributesToRender): Added a missing argument to the
  3102. GetClientValidatedEvent method.
  3103. 2002-03-27 Gaurav Vaish <[email protected]>
  3104. * Removed extra methods, corrected access modifiers to several
  3105. methods.
  3106. 2002-03-26 Gaurav Vaish <[email protected]>
  3107. * <SeveralFiles>.cs - Added some attributes
  3108. * FontUnitConverter.cs - Added stubs for GetStandardValues*(..)
  3109. methods. Will complete them later. Right now, busy with
  3110. the attributes part.
  3111. * RepeaterItem.cs - Completed.
  3112. Oh God! Mercy! I will die applying attributes. I look at the missing
  3113. part in the class-status - daemon! Kyrie eleison!
  3114. 2002-03-19 Gaurav Vaish <[email protected]>
  3115. Some bug fixes
  3116. * AdRotator.cs - Added definition for Font.
  3117. * BaseCompareValidator.cs - Added definition for Controls.
  3118. * Calendar.cs - SelectMonthText definition corrected.
  3119. * DataList.cs - Added definition for SeparatorTemplate.
  3120. * BorderStyle.cs - Namespace correction. It belongs not to UI,
  3121. but to UI.WebControls.
  3122. 2002-03-17 Gaurav Vaish <[email protected]>
  3123. Finally, I have made it. Today I did a second build for the
  3124. System.Web assembly. It compiled 195 classes today.
  3125. I am waiting eagerly for the runtime to come up so that the objects
  3126. may be tested to their last levels. Several of the methods are still
  3127. under the tag of "TODO" throwing NotImplementedException. Well, I
  3128. hope to remove them soon, but how far is this soon - even I don't
  3129. know, though I am happy to make the build a success even before
  3130. the vacations to come.
  3131. 2002-03-07 Gaurav Vaish <[email protected]>
  3132. Yesterday and today I tried to do some building of the aseembly,
  3133. but was dumped with uncoutably infinite errors. ;-)
  3134. I have put the copies of the recent errors on my home page, want
  3135. to have a look at them? See:
  3136. http://mastergaurav.virtualave.net/mono/
  3137. I don't know what to do with these errors. Oh! The buggy me! How
  3138. will I overcome myself. Hopefully, by when my vacations over, I
  3139. should have made a repository where the build will not fail.
  3140. 2002-03-05 Gaurav Vaish <[email protected]>
  3141. I am now going to do a build that will include the
  3142. System.Web.UI.WebControls namespace. Hoping that I will make it
  3143. soon. My exams are coming near and I have to pack up soon.
  3144. 2002-03-04 Gaurav Vaish <[email protected]>
  3145. Comments:
  3146. And with this, ie, today's work, all the objects mentioned in the
  3147. namespace appear in the implementation. But it may not be worth
  3148. trying to go for a build because of dependence of several of the
  3149. internal methods that may clash with already available assembly
  3150. System.Web.
  3151. Also, the classes lack possible attributes, like those informing
  3152. about child-controls etc. But I have to first create the attribute
  3153. classes before I attach the attributes to the classes.
  3154. * CustomValidator.cs - Completed. In process realized that
  3155. I have to complete / rejuvinate BaseValidator class.
  3156. * BaseValidator.cs - Complete rejuvination. Completed 80%
  3157. of the job. All that is left is Render(HtmlTextWriter),
  3158. DetermineRenderUplevel(), RegisterValidatorCommonScript()
  3159. RegisterValidatorDeclaration()
  3160. * DataGridPagerStyle.cs - Completed. That adds one more missle
  3161. in my artillery.
  3162. * DataKeyCollection.cs - Completed. Petty small.
  3163. * Repeater.cs - Work started off. This is a quite
  3164. heavy class. Hooh!
  3165. * DataGridItemEventArgs.cs,
  3166. * DataGridShortCommandEventArgs.cs,
  3167. * DataListItemEventArgs.cs,
  3168. * MonthChangedEventArgs.cs,
  3169. * RepeaterItemEventArgs.cs,
  3170. * ServerValidateEventArgs.cs,
  3171. * DataGridPageChangedEventArgs.cs
  3172. - Damn, I marked them "*", while they
  3173. did not exist.
  3174. * Repeater.cs - Done all except for an undocumented
  3175. method CreateControlHierarchy(bool). Though the method
  3176. is quite clear by its name, but it will take some time
  3177. for me to come with some material to flush in.
  3178. 2002-03-03 Gaurav Vaish <[email protected]>
  3179. * SelectedDatesCollection.cs - Completed.
  3180. * PagedDataSource.cs - Completed. Pathetically nice class.
  3181. * RegularExpressionValidator.cs
  3182. - Completed. Ridiculously small and
  3183. annoyinglyc crazy-driving class, basically the method
  3184. EvaluateIsValid().
  3185. * RangeValidator.cs - Completed.
  3186. * DataGridColumn.cs - Completed.
  3187. * EditCommandColumn.cs - All is complete except for the
  3188. InitializeCell(TableCell, int, ListItemType) method.
  3189. * DataListItem.cs - All done except for a longish method
  3190. RenderItem(HtmlTextWriter, bool, bool)
  3191. 2002-03-02 Gaurav Vaish <[email protected]>
  3192. * RepeaterItemCollection.cs - Completed.
  3193. I love *Collection classes. I am planning to make a
  3194. program that will generate a *Collection class. It's so
  3195. simple and the same. ;-)
  3196. * DataGridColumnCollection.cs - Completed.
  3197. ... except probably for *ColumnCollection classes, where
  3198. you have to put in some more effort. Still, these class
  3199. generation can be automated.
  3200. * DataListItemCollection.cs - Completed.
  3201. See, how easily, in less than a quarter of a minute, I
  3202. completed this class - manually. Copy-Paste/Cut-Replace.
  3203. 2002-02-21 Gaurav Vaish <[email protected]>
  3204. * DataGrid.cs - Following methods implemented:
  3205. TrackViewState(), LoadViewState(object), SaveViewState(),
  3206. On* -- The event raisers.
  3207. OnBubbleEvent(object, EventArgs) is still incomplete.
  3208. * DataGridItem.cs - Initial Implementation
  3209. * DataGridItemCollection.cs - Completed.
  3210. 2002-02-08 Gaurav Vaish <[email protected]>
  3211. * DataGrid.cs - Initial Implementation. Worked
  3212. primarily with some properties.
  3213. 2002-02-07 Gaurav Vaish <[email protected]>
  3214. * ListBox.cs - Completed. Implemented
  3215. LoadPostData(string, NameValueCollection)
  3216. * RequiredFieldValidator.cs - Completed. Pretty simple class.
  3217. 2002-02-06 Gaurav Vaish <[email protected]>
  3218. * ListBox.cs - Implemented the following:
  3219. RaisePostDataChangedEvent()
  3220. 2002-02-02 Gaurav Vaish <[email protected]>
  3221. * ListBox.cs - Supports the following properties:
  3222. BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
  3223. ToolTip.
  3224. Methods:
  3225. AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
  3226. RenderContents(HtmlTextWriter)
  3227. 2002-02-01 Gaurav Vaish <[email protected]>
  3228. * TargetConverter.cs - Completed
  3229. * TemplateColumn.cs - Completed
  3230. * DataList.cs - Corrected the get-er methods for the
  3231. *Style objects. Corrected the get/set-er methods for ViewState
  3232. related objects.
  3233. Addded support for properties:
  3234. GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
  3235. RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
  3236. SelectedItem, SelectedItemStyle, SelectedItemTemplate,
  3237. SeparatorStyle, SeparatorItemTemplate.
  3238. Events:
  3239. CancelCommand, DeleteCommand, EditCommand, ItemCommand,
  3240. ItemCreated, ItemDataBound, UpdateCommand.
  3241. Methods:
  3242. CreateControlStyle(), LoadViewState(object),
  3243. SaveViewState(), TrackViewState
  3244. Event handlers:
  3245. OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
  3246. OnEditCommand, OnItemCommand, OnItemCreated,
  3247. OnItemDataBound, OnUpdateCommand
  3248. Added dummy methods for some undocumented methods:
  3249. CreateControlHierarchy(bool), CreateItem(int, ListItemType),
  3250. CreateItem(int, ListItemType, bool, object),
  3251. PrepareControlHierarchy(), InitializeItem(DataListItem)
  3252. * ListBox.cs - Started working.
  3253. 2002-01-31 Gaurav Vaish <[email protected]>
  3254. * RepeaterInfo.cs - Initial Implementation. Done all
  3255. except for RepeatDirection.Vertical
  3256. * TableStyle.cs - Completed
  3257. 2002-01-30 Gaurav Vaish <[email protected]>
  3258. * DropDownList.cs - Completed
  3259. * ListItemCollection.cs - Added method FindByValueInternal to
  3260. assist in the derived classes.
  3261. Discovered bug in FindByValue. Removed
  3262. * UnitConverter.cs - Completed
  3263. * PlaceHolder.cs - What can be simpler than this?
  3264. * PlaceHolderControlBuilder.cs
  3265. - Uh! Damn cool one.
  3266. * RadioButtonList.cs - Initial Implementation. All is done
  3267. except for the implementation of
  3268. method IRepeatInfoUser.RenderItem(...)
  3269. * ValidatedControlConverter.cs
  3270. ^^^^^^^^^^^^^^^^^^^^^^^^^ - Looks complete. Doubtful though !!
  3271. * ValidationSummary.cs - Initial Implementation.
  3272. * WebColorConverter.cs - Initial Implementation
  3273. 2002-01-27 Gaurav Vaish <[email protected]>
  3274. * FontNamesConverter.cs - Completed
  3275. * FontUnitConverter.cs - Partial Implementation
  3276. * ListItemControlBuilder.cs - Completed
  3277. 2002-01-27 Gaurav Vaish <[email protected]>
  3278. * TextBox.cs - All done except *Render* methods
  3279. * TextBoxControlBuilder.cs - Completed
  3280. * Xml.cs - Partial Implementation
  3281. 2002-01-26 Gaurav Vaish <[email protected]>
  3282. * RadioButton.cs - Completed
  3283. * TextBox.cs - Partial Implementation
  3284. 2002-01-25 Gaurav Vaish <[email protected]>
  3285. * Panel.cs - Completed
  3286. * TableItemStyle.cs - Completed
  3287. 2002-01-18 Gaurav Vaish <[email protected]>
  3288. * TableCellCollection.cs - Completed
  3289. * TableRowCollection.cs - Completed
  3290. * TableHeaderCell.cs - Completed
  3291. * TableRow.cs - Completed
  3292. 2002-01-09 Gaurav Vaish <[email protected]>
  3293. * TableCellControlBuilder.cs - Completed
  3294. * Table.cs - Completed
  3295. * TableCell.cs - Completed
  3296. 2002-01-07 Gaurav Vaish <[email protected]>
  3297. * CheckBoxList.cs - Completed
  3298. * ButtonColumn.cs - Completed
  3299. * Button.cs - Completed
  3300. 2001-12-28 Gaurav Vaish <[email protected]>
  3301. * HyperLink.cs - Completed
  3302. * Image.cs - Completed
  3303. * ImageButton.cs - Completed
  3304. * Label.cs - Completed
  3305. * LabelControlBuilder.cs - Completed
  3306. * LinkButton.cs - Completed
  3307. * LinkButtonControlBuilder.cs - Completed
  3308. * Literal.cs - Completed
  3309. * LieteralControlBuilder.cs - Completed
  3310. * FontUnit.cs - Completed
  3311. 2001-12-27 Gaurav Vaish <[email protected]>
  3312. * Calendar.cs - Completed the functions of Render*,
  3313. ViewStates (Track/View/Save),
  3314. RaisePostBackEvent.
  3315. Left: RenderAllDays (partially)
  3316. 2001-12-21 Gaurav Vaish <[email protected]>
  3317. * Calendar.cs - Added some more functions
  3318. * Style.cs - Completed
  3319. * ListItem.cs - Completed
  3320. * ListItemCollection.cs - Completed
  3321. Made the first successful build of System.Web.dll that included
  3322. System.Web.UI.WebControls!
  3323. 2001-12-20 Gaurav Vaish <[email protected]>
  3324. FontInfo.cs - Complete revamp. Completed
  3325. 2001-12-19 Gaurav Vaish <[email protected]>
  3326. ListItemCollection.cs - Completed
  3327. ListItem.cs - Initial Implementation
  3328. Style.cs - Initial Implementation
  3329. Right now I am in a total mood to do a successful build. Creating so many
  3330. classes, completing classes in System.Web System.Web.UI namespaces.
  3331. 2001-12-18 Gaurav Vaish <[email protected]>
  3332. TODO - Properly added
  3333. CheckBox.cs - Completed
  3334. BaseDataList.cs - Completed
  3335. DayRenderEventArgs.cs - Completed
  3336. RepeaterItem.cs - Initial implementation
  3337. 2001-12-17 Gaurav Vaish <[email protected]>
  3338. BaseCompareValidator.cs - Completed
  3339. AdRotator.cs - Completed
  3340. 2001-12-15 Gaurav Vaish <[email protected]>
  3341. CommandEventArgs.cs - Completed
  3342. DataGridCommandEventArgs.cs - Completed
  3343. RepeaterCommandEventArgs.cs - Completed
  3344. DataListCommandEventArgs.cs - Completed
  3345. CompareValidator.cs - Partial Implementation
  3346. 2001-12-02 Gaurav Vaish <[email protected]>
  3347. CheckBoxList.cs - Partial Implementation.
  3348. All except "Render"
  3349. 2001-12-01 Gaurav Vaish <[email protected]>
  3350. ListControl.cs - Completed
  3351. 2001-11-30 Gaurav Vaish <[email protected]>
  3352. CheckBox.cs - Completed
  3353. ListControl.cs - Initial Implementation
  3354. CheckBoxList.cs - Started with it, but first needed
  3355. ListControl. Left it.
  3356. 2001-11-29 Gaurav Vaish <[email protected]>
  3357. CalendarDay.cs - Making a note that this
  3358. has been implemented
  3359. Calendar.cs - Making a note that have made some changes.
  3360. Unimplmented functions throw
  3361. NotImplementedException
  3362. CheckBox.cs - Can now "Render" and "LoadPostData"
  3363. 2001-11-08 Gaurav Vaish <[email protected]>
  3364. WebControl.cs - Total Revamp, Partial Implementation
  3365. AdRotator.cs - Able to load files
  3366. AdCreatedEventArgs.cs - Implemented
  3367. 2001-11-05 Gaurav Vaish <[email protected]>
  3368. Calendar.cs - Initial Implementation
  3369. ButtonColumn.cs - Initial Implementation
  3370. Button.cs - Initial Implementation
  3371. BoundColumn.cs - Initial Implementation
  3372. BaseCompareValidator.cs - Minor Changes
  3373. DataList.cs, BaseValidator.cs, BaseDataList.cs
  3374. - Added more functions, other changes
  3375. 2001-10-28 Gaurav Vaish <[email protected]>
  3376. WebControl.cs - Initial Implementation
  3377. DataList.cs - Initial Implementation
  3378. BaseValidator.cs - Initial Implementation
  3379. BaseDataList.cs - Initial Implementation
  3380. 2001-10-27 Gaurav Vaish <[email protected]>
  3381. AdCreatedEventArgs.cs - Initial Implementation
  3382. AdCratedEventHandler.cs - Implemented
  3383. AdRotator.cs - Initial Implementation
  3384. BorderStyle.cs - Implemented
  3385. ButtonColumnStyle.cs - Implemented
  3386. CalendarSelectionMode.cs - Implemented
  3387. DayNameFormat.cs - Implemented
  3388. FirstDayOfWeek - Implemented
  3389. FontInfo.cs - Partial Implementation
  3390. FontSize.cs - Implemented
  3391. GridLines.cs - Implemented
  3392. HorizontalAlign.cs - Implemented
  3393. HyperLink.cs - Initial Implementation
  3394. ImageAlign.cs - Implemented
  3395. IRepeatInfoUser.cs - Implemented
  3396. ListItemType.cs - Implemented
  3397. ListSelectionMode.cs - Implemented
  3398. NextPrevFormat.cs - Implemented
  3399. PagerMode.cs - Implemented
  3400. PagerPosition.cs - Implemented
  3401. RepeatDirection.cs - Implemented
  3402. RepeatLayout.cs - Implemented
  3403. TextAlign.cs - Implemented
  3404. TextBoxMode.cs - Implemented
  3405. TitleFormat.cs - Implemented
  3406. UnitType.cs - Implemented
  3407. ValidationCompareOperator.cs
  3408. - Implemented
  3409. ValidationDataType.cs - Implemented
  3410. ValidationSummaryDisplayMode.cs
  3411. - Implemented
  3412. ValidatorDisplay.cs - Implemented
  3413. VerticalAlign.cs - Implemented
  3414. i/ File Created 2001-11-13