ChangeLog 165 KB

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