| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893 |
- //
- // System.Web.UI.WebControls.GridView.cs
- //
- // Authors:
- // Lluis Sanchez Gual ([email protected])
- //
- // (C) 2005 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- #if NET_2_0
- using System;
- using System.Collections;
- using System.Collections.Specialized;
- using System.ComponentModel;
- using System.Web.UI;
- using System.Security.Permissions;
- using System.Text;
- using System.IO;
- using System.Reflection;
- namespace System.Web.UI.WebControls
- {
- [SupportsEventValidation]
- [DesignerAttribute ("System.Web.UI.Design.WebControls.GridViewDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
- [ControlValuePropertyAttribute ("SelectedValue")]
- [DefaultEventAttribute ("SelectedIndexChanged")]
- [AspNetHostingPermissionAttribute (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
- [AspNetHostingPermissionAttribute (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
- public class GridView: CompositeDataBoundControl, ICallbackEventHandler, ICallbackContainer, IPostBackEventHandler, IPostBackContainer
- {
- Table table;
- GridViewRowCollection rows;
- GridViewRow bottomPagerRow;
- GridViewRow topPagerRow;
-
- IOrderedDictionary currentEditRowKeys;
- IOrderedDictionary currentEditNewValues;
- IOrderedDictionary currentEditOldValues;
-
- ITemplate pagerTemplate;
- ITemplate emptyDataTemplate;
-
- PropertyDescriptor[] cachedKeyProperties;
-
- // View state
- DataControlFieldCollection columns;
- PagerSettings pagerSettings;
-
- TableItemStyle alternatingRowStyle;
- TableItemStyle editRowStyle;
- TableItemStyle emptyDataRowStyle;
- TableItemStyle footerStyle;
- TableItemStyle headerStyle;
- TableItemStyle pagerStyle;
- TableItemStyle rowStyle;
- TableItemStyle selectedRowStyle;
- DataKeyArray keys;
- DataKey oldEditValues;
- AutoGeneratedFieldProperties[] autoFieldProperties;
- string [] dataKeyNames = null;
- readonly string[] emptyKeys = new string[0];
-
- private static readonly object PageIndexChangedEvent = new object();
- private static readonly object PageIndexChangingEvent = new object();
- private static readonly object RowCancelingEditEvent = new object();
- private static readonly object RowCommandEvent = new object();
- private static readonly object RowCreatedEvent = new object();
- private static readonly object RowDataBoundEvent = new object();
- private static readonly object RowDeletedEvent = new object();
- private static readonly object RowDeletingEvent = new object();
- private static readonly object RowEditingEvent = new object();
- private static readonly object RowUpdatedEvent = new object();
- private static readonly object RowUpdatingEvent = new object();
- private static readonly object SelectedIndexChangedEvent = new object();
- private static readonly object SelectedIndexChangingEvent = new object();
- private static readonly object SortedEvent = new object();
- private static readonly object SortingEvent = new object();
-
- // Control state
- int pageIndex;
- int pageCount = 0;
- int selectedIndex = -1;
- int editIndex = -1;
- SortDirection sortDirection = SortDirection.Ascending;
- string sortExpression = string.Empty;
-
- public GridView ()
- {
- }
-
- public event EventHandler PageIndexChanged {
- add { Events.AddHandler (PageIndexChangedEvent, value); }
- remove { Events.RemoveHandler (PageIndexChangedEvent, value); }
- }
-
- public event GridViewPageEventHandler PageIndexChanging {
- add { Events.AddHandler (PageIndexChangingEvent, value); }
- remove { Events.RemoveHandler (PageIndexChangingEvent, value); }
- }
-
- public event GridViewCancelEditEventHandler RowCancelingEdit {
- add { Events.AddHandler (RowCancelingEditEvent, value); }
- remove { Events.RemoveHandler (RowCancelingEditEvent, value); }
- }
-
- public event GridViewCommandEventHandler RowCommand {
- add { Events.AddHandler (RowCommandEvent, value); }
- remove { Events.RemoveHandler (RowCommandEvent, value); }
- }
-
- public event GridViewRowEventHandler RowCreated {
- add { Events.AddHandler (RowCreatedEvent, value); }
- remove { Events.RemoveHandler (RowCreatedEvent, value); }
- }
-
- public event GridViewRowEventHandler RowDataBound {
- add { Events.AddHandler (RowDataBoundEvent, value); }
- remove { Events.RemoveHandler (RowDataBoundEvent, value); }
- }
-
- public event GridViewDeletedEventHandler RowDeleted {
- add { Events.AddHandler (RowDeletedEvent, value); }
- remove { Events.RemoveHandler (RowDeletedEvent, value); }
- }
-
- public event GridViewDeleteEventHandler RowDeleting {
- add { Events.AddHandler (RowDeletingEvent, value); }
- remove { Events.RemoveHandler (RowDeletingEvent, value); }
- }
-
- public event GridViewEditEventHandler RowEditing {
- add { Events.AddHandler (RowEditingEvent, value); }
- remove { Events.RemoveHandler (RowEditingEvent, value); }
- }
-
- public event GridViewUpdatedEventHandler RowUpdated {
- add { Events.AddHandler (RowUpdatedEvent, value); }
- remove { Events.RemoveHandler (RowUpdatedEvent, value); }
- }
-
- public event GridViewUpdateEventHandler RowUpdating {
- add { Events.AddHandler (RowUpdatingEvent, value); }
- remove { Events.RemoveHandler (RowUpdatingEvent, value); }
- }
-
- public event EventHandler SelectedIndexChanged {
- add { Events.AddHandler (SelectedIndexChangedEvent, value); }
- remove { Events.RemoveHandler (SelectedIndexChangedEvent, value); }
- }
-
- public event GridViewSelectEventHandler SelectedIndexChanging {
- add { Events.AddHandler (SelectedIndexChangingEvent, value); }
- remove { Events.RemoveHandler (SelectedIndexChangingEvent, value); }
- }
-
- public event EventHandler Sorted {
- add { Events.AddHandler (SortedEvent, value); }
- remove { Events.RemoveHandler (SortedEvent, value); }
- }
-
- public event GridViewSortEventHandler Sorting {
- add { Events.AddHandler (SortingEvent, value); }
- remove { Events.RemoveHandler (SortingEvent, value); }
- }
-
- protected virtual void OnPageIndexChanged (EventArgs e)
- {
- if (Events != null) {
- EventHandler eh = (EventHandler) Events [PageIndexChangedEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnPageIndexChanging (GridViewPageEventArgs e)
- {
- if (Events != null) {
- GridViewPageEventHandler eh = (GridViewPageEventHandler) Events [PageIndexChangingEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnRowCancelingEdit (GridViewCancelEditEventArgs e)
- {
- if (Events != null) {
- GridViewCancelEditEventHandler eh = (GridViewCancelEditEventHandler) Events [RowCancelingEditEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnRowCommand (GridViewCommandEventArgs e)
- {
- if (Events != null) {
- GridViewCommandEventHandler eh = (GridViewCommandEventHandler) Events [RowCommandEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnRowCreated (GridViewRowEventArgs e)
- {
- if (Events != null) {
- GridViewRowEventHandler eh = (GridViewRowEventHandler) Events [RowCreatedEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnRowDataBound (GridViewRowEventArgs e)
- {
- if (Events != null) {
- GridViewRowEventHandler eh = (GridViewRowEventHandler) Events [RowDataBoundEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnRowDeleted (GridViewDeletedEventArgs e)
- {
- if (Events != null) {
- GridViewDeletedEventHandler eh = (GridViewDeletedEventHandler) Events [RowDeletedEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnRowDeleting (GridViewDeleteEventArgs e)
- {
- if (Events != null) {
- GridViewDeleteEventHandler eh = (GridViewDeleteEventHandler) Events [RowDeletingEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnRowEditing (GridViewEditEventArgs e)
- {
- if (Events != null) {
- GridViewEditEventHandler eh = (GridViewEditEventHandler) Events [RowEditingEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnRowUpdated (GridViewUpdatedEventArgs e)
- {
- if (Events != null) {
- GridViewUpdatedEventHandler eh = (GridViewUpdatedEventHandler) Events [RowUpdatedEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnRowUpdating (GridViewUpdateEventArgs e)
- {
- if (Events != null) {
- GridViewUpdateEventHandler eh = (GridViewUpdateEventHandler) Events [RowUpdatingEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnSelectedIndexChanged (EventArgs e)
- {
- if (Events != null) {
- EventHandler eh = (EventHandler) Events [SelectedIndexChangedEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnSelectedIndexChanging (GridViewSelectEventArgs e)
- {
- if (Events != null) {
- GridViewSelectEventHandler eh = (GridViewSelectEventHandler) Events [SelectedIndexChangingEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnSorted (EventArgs e)
- {
- if (Events != null) {
- EventHandler eh = (EventHandler) Events [SortedEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnSorting (GridViewSortEventArgs e)
- {
- if (Events != null) {
- GridViewSortEventHandler eh = (GridViewSortEventHandler) Events [SortingEvent];
- if (eh != null) eh (this, e);
- }
- }
-
-
- [WebCategoryAttribute ("Paging")]
- [DefaultValueAttribute (false)]
- public virtual bool AllowPaging {
- get {
- object ob = ViewState ["AllowPaging"];
- if (ob != null) return (bool) ob;
- return false;
- }
- set {
- ViewState ["AllowPaging"] = value;
- RequireBinding ();
- }
- }
-
- [WebCategoryAttribute ("Behavior")]
- [DefaultValueAttribute (false)]
- public virtual bool AllowSorting {
- get {
- object ob = ViewState ["AllowSorting"];
- if (ob != null) return (bool) ob;
- return false;
- }
- set {
- ViewState ["AllowSorting"] = value;
- RequireBinding ();
- }
- }
-
- [WebCategoryAttribute ("Styles")]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [NotifyParentProperty (true)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- public TableItemStyle AlternatingRowStyle {
- get {
- if (alternatingRowStyle == null) {
- alternatingRowStyle = new TableItemStyle ();
- if (IsTrackingViewState)
- alternatingRowStyle.TrackViewState();
- }
- return alternatingRowStyle;
- }
- }
- [WebCategoryAttribute ("Behavior")]
- [DefaultValueAttribute (false)]
- public virtual bool AutoGenerateEditButton {
- get {
- object ob = ViewState ["AutoGenerateEditButton"];
- if (ob != null) return (bool) ob;
- return false;
- }
- set {
- ViewState ["AutoGenerateEditButton"] = value;
- RequireBinding ();
- }
- }
- [WebCategoryAttribute ("Behavior")]
- [DefaultValueAttribute (false)]
- public virtual bool AutoGenerateDeleteButton {
- get {
- object ob = ViewState ["AutoGenerateDeleteButton"];
- if (ob != null) return (bool) ob;
- return false;
- }
- set {
- ViewState ["AutoGenerateDeleteButton"] = value;
- RequireBinding ();
- }
- }
- [WebCategoryAttribute ("Behavior")]
- [DefaultValueAttribute (false)]
- public virtual bool AutoGenerateSelectButton {
- get {
- object ob = ViewState ["AutoGenerateSelectButton"];
- if (ob != null) return (bool) ob;
- return false;
- }
- set {
- ViewState ["AutoGenerateSelectButton"] = value;
- RequireBinding ();
- }
- }
- [WebCategoryAttribute ("Behavior")]
- [DefaultValueAttribute (true)]
- public virtual bool AutoGenerateColumns {
- get {
- object ob = ViewState ["AutoGenerateColumns"];
- if (ob != null) return (bool) ob;
- return true;
- }
- set {
- ViewState ["AutoGenerateColumns"] = value;
- RequireBinding ();
- }
- }
-
- [UrlPropertyAttribute]
- [WebCategoryAttribute ("Appearance")]
- [DefaultValueAttribute ("")]
- [EditorAttribute ("System.Web.UI.Design.ImageUrlEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
- public virtual string BackImageUrl {
- get {
- if (ControlStyleCreated)
- return ((TableStyle) ControlStyle).BackImageUrl;
- return String.Empty;
- }
- set {
- ((TableStyle) ControlStyle).BackImageUrl = value;
- }
- }
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public virtual GridViewRow BottomPagerRow {
- get {
- EnsureDataBound ();
- return bottomPagerRow;
- }
- }
-
- [WebCategoryAttribute ("Accessibility")]
- [DefaultValueAttribute ("")]
- [LocalizableAttribute (true)]
- public virtual string Caption {
- get {
- object ob = ViewState ["Caption"];
- if (ob != null) return (string) ob;
- return string.Empty;
- }
- set {
- ViewState ["Caption"] = value;
- RequireBinding ();
- }
- }
-
- [WebCategoryAttribute ("Accessibility")]
- [DefaultValueAttribute (TableCaptionAlign.NotSet)]
- public virtual TableCaptionAlign CaptionAlign
- {
- get {
- object o = ViewState ["CaptionAlign"];
- if(o != null) return (TableCaptionAlign) o;
- return TableCaptionAlign.NotSet;
- }
- set {
- ViewState ["CaptionAlign"] = value;
- RequireBinding ();
- }
- }
- [WebCategoryAttribute ("Layout")]
- [DefaultValueAttribute (-1)]
- public virtual int CellPadding
- {
- get {
- if (ControlStyleCreated)
- return ((TableStyle) ControlStyle).CellPadding;
- return -1;
- }
- set {
- ((TableStyle) ControlStyle).CellPadding = value;
- }
- }
- [WebCategoryAttribute ("Layout")]
- [DefaultValueAttribute (0)]
- public virtual int CellSpacing
- {
- get {
- if (ControlStyleCreated)
- return ((TableStyle) ControlStyle).CellSpacing;
- return 0;
- }
- set {
- ((TableStyle) ControlStyle).CellSpacing = value;
- }
- }
-
- [EditorAttribute ("System.Web.UI.Design.WebControls.DataControlFieldTypeEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
- [MergablePropertyAttribute (false)]
- [PersistenceModeAttribute (PersistenceMode.InnerProperty)]
- [DefaultValueAttribute (null)]
- [WebCategoryAttribute ("Misc")]
- public virtual DataControlFieldCollection Columns {
- get {
- if (columns == null) {
- columns = new DataControlFieldCollection ();
- columns.FieldsChanged += new EventHandler (OnFieldsChanged);
- if (IsTrackingViewState)
- ((IStateManager)columns).TrackViewState ();
- }
- return columns;
- }
- }
- [DefaultValueAttribute (null)]
- [WebCategoryAttribute ("Data")]
- [TypeConverter (typeof(StringArrayConverter))]
- [EditorAttribute ("System.Web.UI.Design.WebControls.DataFieldEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
- public virtual string[] DataKeyNames
- {
- get {
- if (dataKeyNames != null)
- return dataKeyNames;
- return emptyKeys;
- }
- set {
- dataKeyNames = value;
- RequireBinding ();
- }
- }
-
- [BrowsableAttribute (false)]
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- public virtual DataKeyArray DataKeys {
- get {
- EnsureDataBound ();
- return keys;
- }
- }
- [WebCategoryAttribute ("Misc")]
- [DefaultValueAttribute (-1)]
- public virtual int EditIndex {
- get {
- return editIndex;
- }
- set {
- editIndex = value;
- RequireBinding ();
- }
- }
-
- [WebCategoryAttribute ("Styles")]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [NotifyParentProperty (true)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- public TableItemStyle EditRowStyle {
- get {
- if (editRowStyle == null) {
- editRowStyle = new TableItemStyle ();
- if (IsTrackingViewState)
- editRowStyle.TrackViewState();
- }
- return editRowStyle;
- }
- }
-
- [WebCategoryAttribute ("Styles")]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [NotifyParentProperty (true)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- public TableItemStyle EmptyDataRowStyle {
- get {
- if (emptyDataRowStyle == null) {
- emptyDataRowStyle = new TableItemStyle ();
- if (IsTrackingViewState)
- emptyDataRowStyle.TrackViewState();
- }
- return emptyDataRowStyle;
- }
- }
-
- [DefaultValue (null)]
- [TemplateContainer (typeof(GridViewRow), BindingDirection.OneWay)]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [Browsable (false)]
- public virtual ITemplate EmptyDataTemplate {
- get { return emptyDataTemplate; }
- set { emptyDataTemplate = value; RequireBinding (); }
- }
-
- [LocalizableAttribute (true)]
- [WebCategoryAttribute ("Appearance")]
- [DefaultValueAttribute ("")]
- public virtual string EmptyDataText {
- get {
- object ob = ViewState ["EmptyDataText"];
- if (ob != null) return (string) ob;
- return string.Empty;
- }
- set {
- ViewState ["EmptyDataText"] = value;
- RequireBinding ();
- }
- }
-
- [WebCategoryAttribute ("Behavior")]
- [DefaultValueAttribute (false)]
- public virtual bool EnableSortingAndPagingCallbacks {
- get {
- object ob = ViewState ["EnableSortingAndPagingCallbacks"];
- if (ob != null) return (bool) ob;
- return false;
- }
- set {
- ViewState ["EnableSortingAndPagingCallbacks"] = value;
- RequireBinding ();
- }
- }
-
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public virtual GridViewRow FooterRow {
- get {
- if (table != null) {
- for (int index = table.Rows.Count - 1; index >= 0; index--) {
- GridViewRow row = (GridViewRow) table.Rows [index];
- switch (row.RowType) {
- case DataControlRowType.Separator:
- case DataControlRowType.Pager:
- continue;
- case DataControlRowType.Footer:
- return row;
- default:
- break;
- }
- }
- }
- return null;
- }
- }
-
- [WebCategoryAttribute ("Styles")]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [NotifyParentProperty (true)]
- [DefaultValue (null)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- public TableItemStyle FooterStyle {
- get {
- if (footerStyle == null) {
- footerStyle = new TableItemStyle ();
- if (IsTrackingViewState)
- footerStyle.TrackViewState();
- }
- return footerStyle;
- }
- }
-
- [WebCategoryAttribute ("Appearance")]
- [DefaultValueAttribute (GridLines.Both)]
- public virtual GridLines GridLines {
- get {
- if (ControlStyleCreated)
- return ((TableStyle) ControlStyle).GridLines;
- return GridLines.Both;
- }
- set {
- ((TableStyle) ControlStyle).GridLines = value;
- }
- }
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public virtual GridViewRow HeaderRow {
- get {
- if (table != null) {
- for (int index = 0, total = table.Rows.Count; index < total; index++) {
- GridViewRow row = (GridViewRow) table.Rows [index];
- switch (row.RowType) {
- case DataControlRowType.Separator:
- case DataControlRowType.Pager:
- continue;
- case DataControlRowType.Header:
- return row;
- default:
- break;
- }
- }
- }
- return null;
- }
- }
-
- [WebCategoryAttribute ("Styles")]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [NotifyParentProperty (true)]
- [DefaultValue (null)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- public TableItemStyle HeaderStyle {
- get {
- if (headerStyle == null) {
- headerStyle = new TableItemStyle ();
- if (IsTrackingViewState)
- headerStyle.TrackViewState();
- }
- return headerStyle;
- }
- }
-
- [Category ("Layout")]
- [DefaultValueAttribute (HorizontalAlign.NotSet)]
- public virtual HorizontalAlign HorizontalAlign {
- get {
- if (ControlStyleCreated)
- return ((TableStyle) ControlStyle).HorizontalAlign;
- return HorizontalAlign.NotSet;
- }
- set {
- ((TableStyle) ControlStyle).HorizontalAlign = value;
- }
- }
- [BrowsableAttribute (false)]
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- public virtual int PageCount {
- get {
- if (pageCount != 0) return pageCount;
- EnsureDataBound ();
- return pageCount;
- }
- }
- [WebCategoryAttribute ("Paging")]
- [BrowsableAttribute (true)]
- [DefaultValueAttribute (0)]
- public virtual int PageIndex {
- get {
- return pageIndex;
- }
- set {
- pageIndex = value;
- RequireBinding ();
- }
- }
-
- [DefaultValueAttribute (10)]
- [WebCategoryAttribute ("Paging")]
- public virtual int PageSize {
- get {
- object ob = ViewState ["PageSize"];
- if (ob != null) return (int) ob;
- return 10;
- }
- set {
- ViewState ["PageSize"] = value;
- RequireBinding ();
- }
- }
-
- [WebCategoryAttribute ("Paging")]
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Content)]
- [NotifyParentPropertyAttribute (true)]
- [PersistenceModeAttribute (PersistenceMode.InnerProperty)]
- public virtual PagerSettings PagerSettings {
- get {
- if (pagerSettings == null) {
- pagerSettings = new PagerSettings (this);
- if (IsTrackingViewState)
- ((IStateManager)pagerSettings).TrackViewState ();
- }
- return pagerSettings;
- }
- }
-
- [WebCategoryAttribute ("Styles")]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [NotifyParentProperty (true)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- public TableItemStyle PagerStyle {
- get {
- if (pagerStyle == null) {
- pagerStyle = new TableItemStyle ();
- if (IsTrackingViewState)
- pagerStyle.TrackViewState();
- }
- return pagerStyle;
- }
- }
-
-
- [DefaultValue (null)]
- /* DataControlPagerCell isnt specified in the docs */
- //[TemplateContainer (typeof(DataControlPagerCell), BindingDirection.OneWay)]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [Browsable (false)]
- public virtual ITemplate PagerTemplate {
- get { return pagerTemplate; }
- set { pagerTemplate = value; RequireBinding (); }
- }
-
- [DefaultValueAttribute ("")]
- [WebCategoryAttribute ("Accessibility")]
- // [TypeConverterAttribute (typeof(System.Web.UI.Design.DataColumnSelectionConverter)]
- public virtual string RowHeaderColumn {
- get {
- object ob = ViewState ["RowHeaderColumn"];
- if (ob != null) return (string) ob;
- return string.Empty;
- }
- set {
- ViewState ["RowHeaderColumn"] = value;
- RequireBinding ();
- }
- }
-
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public virtual GridViewRowCollection Rows {
- get {
- EnsureDataBound ();
- return rows;
- }
- }
-
- [WebCategoryAttribute ("Styles")]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [NotifyParentProperty (true)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- public TableItemStyle RowStyle {
- get {
- if (rowStyle == null) {
- rowStyle = new TableItemStyle ();
- if (IsTrackingViewState)
- rowStyle.TrackViewState();
- }
- return rowStyle;
- }
- }
-
- [BrowsableAttribute (false)]
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- public virtual DataKey SelectedDataKey {
- get {
- if (DataKeys == null)
- throw new InvalidOperationException ("DataKeys");
- if (selectedIndex >= 0 && selectedIndex < DataKeys.Count) {
- return DataKeys [selectedIndex];
- } else
- return null;
- }
- }
-
- [BindableAttribute (true)]
- [DefaultValueAttribute (-1)]
- public virtual int SelectedIndex {
- get {
- return selectedIndex;
- }
- set {
- if (Rows != null && selectedIndex >= 0 && selectedIndex < Rows.Count) {
- int oldIndex = selectedIndex;
- selectedIndex = -1;
- Rows [oldIndex].RowState = GetRowState (oldIndex);
- }
- selectedIndex = value;
- if (Rows != null && selectedIndex >= 0 && selectedIndex < Rows.Count) {
- Rows [selectedIndex].RowState = GetRowState (selectedIndex);
- }
- }
- }
-
- [BrowsableAttribute (false)]
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- public virtual GridViewRow SelectedRow {
- get {
- if (selectedIndex >= 0 && selectedIndex < Rows.Count) {
- return Rows [selectedIndex];
- } else
- return null;
- }
- }
-
- [WebCategoryAttribute ("Styles")]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [NotifyParentProperty (true)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- public TableItemStyle SelectedRowStyle {
- get {
- if (selectedRowStyle == null) {
- selectedRowStyle = new TableItemStyle ();
- if (IsTrackingViewState)
- selectedRowStyle.TrackViewState();
- }
- return selectedRowStyle;
- }
- }
-
- [BrowsableAttribute (false)]
- public object SelectedValue {
- get {
- if (SelectedDataKey != null)
- return SelectedDataKey.Value;
- else
- return null;
- }
- }
-
- [WebCategoryAttribute ("Appearance")]
- [DefaultValueAttribute (false)]
- public virtual bool ShowFooter {
- get {
- object ob = ViewState ["ShowFooter"];
- if (ob != null) return (bool) ob;
- return false;
- }
- set {
- ViewState ["ShowFooter"] = value;
- RequireBinding ();
- }
- }
-
- [WebCategoryAttribute ("Appearance")]
- [DefaultValueAttribute (true)]
- public virtual bool ShowHeader {
- get {
- object ob = ViewState ["ShowHeader"];
- if (ob != null) return (bool) ob;
- return true;
- }
- set {
- ViewState ["ShowHeader"] = value;
- RequireBinding ();
- }
- }
-
- [PersistenceModeAttribute (PersistenceMode.InnerProperty)]
- [BrowsableAttribute (false)]
- [DefaultValueAttribute (SortDirection.Ascending)]
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- public virtual SortDirection SortDirection {
- get { return sortDirection; }
- }
-
- [BrowsableAttribute (false)]
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- public virtual string SortExpression {
- get { return sortExpression; }
- }
-
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public virtual GridViewRow TopPagerRow {
- get {
- EnsureDataBound ();
- return topPagerRow;
- }
- }
-
- [WebCategoryAttribute ("Accessibility")]
- [DefaultValueAttribute (true)]
- public virtual bool UseAccessibleHeader {
- get {
- object ob = ViewState ["UseAccessibleHeader"];
- if (ob != null) return (bool) ob;
- return true;
- }
- set {
- ViewState ["UseAccessibleHeader"] = value;
- RequireBinding ();
- }
- }
-
- public virtual bool IsBindableType (Type type)
- {
- return type.IsPrimitive || type == typeof(string) || type == typeof(DateTime) || type == typeof(Guid);
- }
-
- protected override DataSourceSelectArguments CreateDataSourceSelectArguments ()
- {
- return base.CreateDataSourceSelectArguments ();
- }
-
- protected virtual ICollection CreateColumns (PagedDataSource dataSource, bool useDataSource)
- {
- ArrayList fields = new ArrayList ();
- fields.AddRange (Columns);
-
- if (AutoGenerateEditButton || AutoGenerateDeleteButton || AutoGenerateSelectButton) {
- CommandField field = new CommandField ();
- field.ShowEditButton = AutoGenerateEditButton;
- field.ShowDeleteButton = AutoGenerateDeleteButton;
- field.ShowSelectButton = AutoGenerateSelectButton;
- fields.Add (field);
- }
-
- if (AutoGenerateColumns) {
- if (useDataSource)
- autoFieldProperties = CreateAutoFieldProperties (dataSource);
-
- if (autoFieldProperties != null) {
- foreach (AutoGeneratedFieldProperties props in autoFieldProperties)
- fields.Add (CreateAutoGeneratedColumn (props));
- }
- }
-
- return fields;
- }
-
- protected virtual AutoGeneratedField CreateAutoGeneratedColumn (AutoGeneratedFieldProperties fieldProperties)
- {
- return new AutoGeneratedField (fieldProperties);
- }
-
- AutoGeneratedFieldProperties[] CreateAutoFieldProperties (PagedDataSource source)
- {
- if(source == null) return null;
-
- PropertyDescriptorCollection props = source.GetItemProperties (new PropertyDescriptor[0]);
- Type prop_type;
-
- ArrayList retVal = new ArrayList();
-
- if (props == null)
- {
- object fitem = null;
- prop_type = null;
- PropertyInfo prop_item = source.DataSource.GetType().GetProperty("Item",
- BindingFlags.Instance | BindingFlags.Static |
- BindingFlags.Public, null, null,
- new Type[] { typeof(int) }, null);
-
- if (prop_item != null) {
- prop_type = prop_item.PropertyType;
- }
-
- if (prop_type == null || prop_type == typeof(object)) {
- IEnumerator en = source.GetEnumerator();
- if (en.MoveNext())
- fitem = en.Current;
- if (fitem != null)
- prop_type = fitem.GetType();
- }
-
- if (fitem != null && fitem is ICustomTypeDescriptor) {
- props = TypeDescriptor.GetProperties(fitem);
- } else if (prop_type != null) {
- if (IsBindableType (prop_type)) {
- AutoGeneratedFieldProperties field = new AutoGeneratedFieldProperties ();
- ((IStateManager)field).TrackViewState();
- field.Name = "Item";
- field.DataField = BoundField.ThisExpression;
- field.Type = prop_type;
- retVal.Add (field);
- } else {
- props = TypeDescriptor.GetProperties (prop_type);
- }
- }
- }
-
- if (props != null && props.Count > 0)
- {
- foreach (PropertyDescriptor current in props) {
- if (IsBindableType (current.PropertyType)) {
- AutoGeneratedFieldProperties field = new AutoGeneratedFieldProperties ();
- ((IStateManager)field).TrackViewState();
- field.Name = current.Name;
- field.DataField = current.Name;
- field.IsReadOnly = current.IsReadOnly;
- field.Type = current.PropertyType;
- retVal.Add (field);
- }
- }
- }
- if (retVal.Count > 0)
- return (AutoGeneratedFieldProperties[]) retVal.ToArray (typeof(AutoGeneratedFieldProperties));
- else
- return new AutoGeneratedFieldProperties [0];
- }
-
- protected virtual GridViewRow CreateRow (int rowIndex, int dataSourceIndex, DataControlRowType rowType, DataControlRowState rowState)
- {
- GridViewRow row = new GridViewRow (rowIndex, dataSourceIndex, rowType, rowState);
- OnRowCreated (new GridViewRowEventArgs (row));
- return row;
- }
-
- void RequireBinding ()
- {
- if (Initialized) {
- RequiresDataBinding = true;
- pageCount = -1;
- }
- }
-
- protected virtual Table CreateChildTable ()
- {
- return new ContainedTable (this);
- }
-
- protected override int CreateChildControls (IEnumerable data, bool dataBinding)
- {
- PagedDataSource dataSource;
- if (dataBinding) {
- DataSourceView view = GetData ();
- dataSource = new PagedDataSource ();
- dataSource.DataSource = data;
-
- if (AllowPaging) {
- dataSource.AllowPaging = true;
- dataSource.PageSize = PageSize;
- dataSource.CurrentPageIndex = PageIndex;
- if (view.CanPage) {
- dataSource.AllowServerPaging = true;
- if (view.CanRetrieveTotalRowCount)
- dataSource.VirtualCount = SelectArguments.TotalRowCount;
- }
- }
-
- pageCount = dataSource.PageCount;
- }
- else
- {
- dataSource = new PagedDataSource ();
- dataSource.DataSource = data;
- if (AllowPaging) {
- dataSource.AllowPaging = true;
- dataSource.PageSize = PageSize;
- dataSource.CurrentPageIndex = PageIndex;
- }
- }
- bool showPager = AllowPaging && (PageCount > 1);
-
- Controls.Clear ();
- table = CreateChildTable ();
- Controls.Add (table);
-
- ArrayList list = new ArrayList ();
- ArrayList keyList = new ArrayList ();
-
- // Creates the set of fields to show
-
- ICollection fieldCollection = CreateColumns (dataSource, dataBinding);
- DataControlField[] fields = new DataControlField [fieldCollection.Count];
- fieldCollection.CopyTo (fields, 0);
- foreach (DataControlField field in fields) {
- field.Initialize (AllowSorting, this);
- if (EnableSortingAndPagingCallbacks)
- field.ValidateSupportsCallback ();
- }
- // Main table creation
-
- if (showPager && PagerSettings.Position == PagerPosition.Top || PagerSettings.Position == PagerPosition.TopAndBottom) {
- topPagerRow = CreatePagerRow (fields.Length, dataSource);
- table.Rows.Add (topPagerRow);
- }
- GridViewRow headerRow = CreateRow (0, 0, DataControlRowType.Header, DataControlRowState.Normal);
- table.Rows.Add (headerRow);
- InitializeRow (headerRow, fields);
-
- foreach (object obj in dataSource) {
- DataControlRowState rstate = GetRowState (list.Count);
- GridViewRow row = CreateRow (list.Count, list.Count, DataControlRowType.DataRow, rstate);
- row.DataItem = obj;
- list.Add (row);
- table.Rows.Add (row);
- InitializeRow (row, fields);
- if (dataBinding) {
- row.DataBind ();
- OnRowDataBound (new GridViewRowEventArgs (row));
- if (EditIndex == row.RowIndex)
- oldEditValues = new DataKey (GetRowValues (row, false, true));
- keyList.Add (new DataKey (CreateRowDataKey (row), DataKeyNames));
- } else {
- if (EditIndex == row.RowIndex)
- oldEditValues = new DataKey (new OrderedDictionary ());
- keyList.Add (new DataKey (new OrderedDictionary (), DataKeyNames));
- }
- if (list.Count >= PageSize)
- break;
- }
-
- if (list.Count == 0)
- table.Rows.Add (CreateEmptyrRow (fields.Length));
- GridViewRow footerRow = CreateRow (0, 0, DataControlRowType.Footer, DataControlRowState.Normal);
- table.Rows.Add (footerRow);
- InitializeRow (footerRow, fields);
- if (showPager && PagerSettings.Position == PagerPosition.Bottom || PagerSettings.Position == PagerPosition.TopAndBottom) {
- bottomPagerRow = CreatePagerRow (fields.Length, dataSource);
- table.Rows.Add (bottomPagerRow);
- }
- rows = new GridViewRowCollection (list);
- keys = new DataKeyArray (keyList);
- return dataSource.DataSourceCount;
- }
- protected override Style CreateControlStyle ()
- {
- TableStyle style = new TableStyle (ViewState);
- style.GridLines = GridLines.Both;
- style.CellSpacing = 0;
- return style;
- }
-
- DataControlRowState GetRowState (int index)
- {
- DataControlRowState rstate = (index % 2) == 0 ? DataControlRowState.Normal : DataControlRowState.Alternate;
- if (index == SelectedIndex) rstate |= DataControlRowState.Selected;
- if (index == EditIndex) rstate |= DataControlRowState.Edit;
- return rstate;
- }
-
- GridViewRow CreatePagerRow (int fieldCount, PagedDataSource dataSource)
- {
- GridViewRow row = CreateRow (-1, -1, DataControlRowType.Pager, DataControlRowState.Normal);
- InitializePager (row, fieldCount, dataSource);
- return row;
- }
-
- protected virtual void InitializePager (GridViewRow row, int columnSpan, PagedDataSource dataSource)
- {
- TableCell cell = new TableCell ();
- if (columnSpan > 1)
- cell.ColumnSpan = columnSpan;
-
- if (pagerTemplate != null)
- pagerTemplate.InstantiateIn (cell);
- else
- cell.Controls.Add (PagerSettings.CreatePagerControl (dataSource.CurrentPageIndex, dataSource.PageCount, pagerStyle));
-
- row.Cells.Add (cell);
- }
-
- GridViewRow CreateEmptyrRow (int fieldCount)
- {
- GridViewRow row = CreateRow (-1, -1, DataControlRowType.EmptyDataRow, DataControlRowState.Normal);
- TableCell cell = new TableCell ();
- cell.ColumnSpan = fieldCount;
-
- if (emptyDataTemplate != null)
- emptyDataTemplate.InstantiateIn (cell);
- else
- cell.Text = EmptyDataText;
-
- row.Cells.Add (cell);
- return row;
- }
-
- protected virtual void InitializeRow (GridViewRow row, DataControlField[] fields)
- {
- DataControlCellType ctype;
- bool accessibleHeader = false;
- switch (row.RowType) {
- case DataControlRowType.Header:
- ctype = DataControlCellType.Header;
- accessibleHeader = UseAccessibleHeader;
- break;
- case DataControlRowType.Footer:
- ctype = DataControlCellType.Footer;
- break;
- default:
- ctype = DataControlCellType.DataCell;
- break;
- }
-
- for (int n=0; n<fields.Length; n++) {
- DataControlField field = fields [n];
- DataControlFieldCell cell;
- if (((field is BoundField) && ((BoundField)field).DataField == RowHeaderColumn) || accessibleHeader)
- cell = new DataControlFieldHeaderCell (field, accessibleHeader ? TableHeaderScope.Column : TableHeaderScope.Row);
- else
- cell = new DataControlFieldCell (field);
- row.Cells.Add (cell);
- field.InitializeCell (cell, ctype, row.RowState, row.RowIndex);
- }
- }
-
- IOrderedDictionary CreateRowDataKey (GridViewRow row)
- {
- if (cachedKeyProperties == null) {
- PropertyDescriptorCollection props = TypeDescriptor.GetProperties (row.DataItem);
- cachedKeyProperties = new PropertyDescriptor [DataKeyNames.Length];
- for (int n=0; n<DataKeyNames.Length; n++) {
- PropertyDescriptor p = props [DataKeyNames[n]];
- if (p == null)
- new InvalidOperationException ("Property '" + DataKeyNames[n] + "' not found in object of type " + row.DataItem.GetType());
- cachedKeyProperties [n] = p;
- }
- }
-
- OrderedDictionary dic = new OrderedDictionary ();
- foreach (PropertyDescriptor p in cachedKeyProperties)
- dic [p.Name] = p.GetValue (row.DataItem);
- return dic;
- }
-
- IOrderedDictionary GetRowValues (GridViewRow row, bool includeReadOnlyFields, bool includePrimaryKey)
- {
- OrderedDictionary dic = new OrderedDictionary ();
- ExtractRowValues (dic, row, includeReadOnlyFields, includePrimaryKey);
- return dic;
- }
-
- protected virtual void ExtractRowValues (IOrderedDictionary fieldValues, GridViewRow row, bool includeReadOnlyFields, bool includePrimaryKey)
- {
- foreach (TableCell cell in row.Cells) {
- DataControlFieldCell c = cell as DataControlFieldCell;
- if (c != null)
- c.ContainingField.ExtractValuesFromCell (fieldValues, c, row.RowState, includeReadOnlyFields);
- }
- if (!includePrimaryKey && DataKeyNames != null)
- foreach (string key in DataKeyNames)
- fieldValues.Remove (key);
- }
-
- protected override HtmlTextWriterTag TagKey {
- get {
- if (EnableSortingAndPagingCallbacks)
- return HtmlTextWriterTag.Div;
- else
- return HtmlTextWriterTag.Table;
- }
- }
-
- public sealed override void DataBind ()
- {
- DataSourceView view = GetData ();
- if (AllowPaging && view.CanPage) {
- SelectArguments.StartRowIndex = PageIndex * PageSize;
- SelectArguments.MaximumRows = PageSize;
- if (view.CanRetrieveTotalRowCount)
- SelectArguments.RetrieveTotalRowCount = true;
- }
- if (sortExpression != "") {
- if (sortDirection == SortDirection.Ascending)
- SelectArguments.SortExpression = sortExpression;
- else
- SelectArguments.SortExpression = sortExpression + " DESC";
- }
-
- cachedKeyProperties = null;
- base.DataBind ();
- }
-
- protected internal override void PerformDataBinding (IEnumerable data)
- {
- base.PerformDataBinding (data);
- }
- [MonoTODO]
- protected internal virtual void PrepareControlHierarchy ()
- {
- throw new NotImplementedException ();
- }
-
- protected internal override void OnInit (EventArgs e)
- {
- Page.RegisterRequiresControlState (this);
- base.OnInit (e);
- }
-
- void OnFieldsChanged (object sender, EventArgs args)
- {
- RequireBinding ();
- }
-
- protected override void OnDataPropertyChanged ()
- {
- base.OnDataPropertyChanged ();
- RequireBinding ();
- }
-
- protected override void OnDataSourceViewChanged (object sender, EventArgs e)
- {
- base.OnDataSourceViewChanged (sender, e);
- RequireBinding ();
- }
-
- protected override bool OnBubbleEvent (object source, EventArgs e)
- {
- GridViewCommandEventArgs args = e as GridViewCommandEventArgs;
- if (args != null) {
- OnRowCommand (args);
- string param = args.CommandArgument as string;
- if (param == null || param.Length == 0) {
- GridViewRow row = args.Row;
- if (row != null)
- param = row.RowIndex.ToString();
- }
- ProcessEvent (args.CommandName, param);
- }
- return base.OnBubbleEvent (source, e);
- }
-
- void IPostBackEventHandler.RaisePostBackEvent (string eventArgument)
- {
- RaisePostBackEvent (eventArgument);
- }
- // This is prolly obsolete
- protected virtual void RaisePostBackEvent (string eventArgument)
- {
- int i = eventArgument.IndexOf ('$');
- if (i != -1)
- ProcessEvent (eventArgument.Substring (0, i), eventArgument.Substring (i + 1));
- else
- ProcessEvent (eventArgument, null);
- }
-
- void ProcessEvent (string eventName, string param)
- {
- switch (eventName)
- {
- case DataControlCommands.PageCommandName:
- int newIndex = -1;
- switch (param) {
- case DataControlCommands.FirstPageCommandArgument:
- newIndex = 0;
- break;
- case DataControlCommands.LastPageCommandArgument:
- newIndex = PageCount - 1;
- break;
- case DataControlCommands.NextPageCommandArgument:
- if (PageIndex < PageCount - 1) newIndex = PageIndex + 1;
- break;
- case DataControlCommands.PreviousPageCommandArgument:
- if (PageIndex > 0) newIndex = PageIndex - 1;
- break;
- default:
- newIndex = int.Parse (param) - 1;
- break;
- }
- ShowPage (newIndex);
- break;
-
- case DataControlCommands.FirstPageCommandArgument:
- ShowPage (0);
- break;
- case DataControlCommands.LastPageCommandArgument:
- ShowPage (PageCount - 1);
- break;
-
- case DataControlCommands.NextPageCommandArgument:
- if (PageIndex < PageCount - 1)
- ShowPage (PageIndex + 1);
- break;
- case DataControlCommands.PreviousPageCommandArgument:
- if (PageIndex > 0)
- ShowPage (PageIndex - 1);
- break;
-
- case DataControlCommands.SelectCommandName:
- SelectRow (int.Parse (param));
- break;
-
- case DataControlCommands.EditCommandName:
- EditRow (int.Parse (param));
- break;
-
- case DataControlCommands.UpdateCommandName:
- UpdateRow (EditIndex, true);
- break;
-
- case DataControlCommands.CancelCommandName:
- CancelEdit ();
- break;
-
- case DataControlCommands.DeleteCommandName:
- DeleteRow (int.Parse (param));
- break;
-
- case DataControlCommands.SortCommandName:
- Sort (param);
- break;
- }
- }
-
- void Sort (string newSortExpression)
- {
- SortDirection newDirection;
- if (sortExpression == newSortExpression) {
- if (sortDirection == SortDirection.Ascending)
- newDirection = SortDirection.Descending;
- else
- newDirection = SortDirection.Ascending;
- } else
- newDirection = sortDirection;
-
- Sort (newSortExpression, newDirection);
- }
-
- public virtual void Sort (string newSortExpression, SortDirection newSortDirection)
- {
- GridViewSortEventArgs args = new GridViewSortEventArgs (newSortExpression, newSortDirection);
- OnSorting (args);
- if (args.Cancel) return;
-
- sortExpression = args.SortExpression;
- sortDirection = args.SortDirection;
- RequireBinding ();
-
- OnSorted (EventArgs.Empty);
- }
-
- void SelectRow (int index)
- {
- GridViewSelectEventArgs args = new GridViewSelectEventArgs (index);
- OnSelectedIndexChanging (args);
- if (!args.Cancel) {
- SelectedIndex = args.NewSelectedIndex;
- OnSelectedIndexChanged (EventArgs.Empty);
- }
- }
-
- void ShowPage (int newIndex)
- {
- GridViewPageEventArgs args = new GridViewPageEventArgs (newIndex);
- OnPageIndexChanging (args);
- if (!args.Cancel) {
- EndRowEdit ();
- PageIndex = args.NewPageIndex;
- OnPageIndexChanged (EventArgs.Empty);
- }
- }
-
- void EditRow (int index)
- {
- GridViewEditEventArgs args = new GridViewEditEventArgs (index);
- OnRowEditing (args);
- if (!args.Cancel) {
- EditIndex = args.NewEditIndex;
- }
- }
-
- void CancelEdit ()
- {
- GridViewCancelEditEventArgs args = new GridViewCancelEditEventArgs (EditIndex);
- OnRowCancelingEdit (args);
- if (!args.Cancel) {
- EndRowEdit ();
- }
- }
- [MonoTODO ("Support two-way binding expressions")]
- public virtual void UpdateRow (int rowIndex, bool causesValidation)
- {
- if (causesValidation)
- Page.Validate ();
-
- if (rowIndex != EditIndex) throw new NotSupportedException ();
-
- currentEditOldValues = oldEditValues.Values;
- GridViewRow row = Rows [rowIndex];
- currentEditRowKeys = DataKeys [rowIndex].Values;
- currentEditNewValues = GetRowValues (row, false, false);
-
- GridViewUpdateEventArgs args = new GridViewUpdateEventArgs (EditIndex, currentEditRowKeys, currentEditOldValues, currentEditNewValues);
- OnRowUpdating (args);
- if (!args.Cancel) {
- DataSourceView view = GetData ();
- if (view == null) throw new HttpException ("The DataSourceView associated to data bound control was null");
- view.Update (currentEditRowKeys, currentEditNewValues, currentEditOldValues, new DataSourceViewOperationCallback (UpdateCallback));
- } else
- EndRowEdit ();
- }
- bool UpdateCallback (int recordsAffected, Exception exception)
- {
- GridViewUpdatedEventArgs dargs = new GridViewUpdatedEventArgs (recordsAffected, exception, currentEditRowKeys, currentEditOldValues, currentEditNewValues);
- OnRowUpdated (dargs);
- if (!dargs.KeepInEditMode)
- EndRowEdit ();
- return dargs.ExceptionHandled;
- }
-
- public virtual void DeleteRow (int rowIndex)
- {
- GridViewRow row = Rows [rowIndex];
- currentEditRowKeys = DataKeys [rowIndex].Values;
- currentEditNewValues = GetRowValues (row, true, true);
-
- GridViewDeleteEventArgs args = new GridViewDeleteEventArgs (rowIndex, currentEditRowKeys, currentEditNewValues);
- OnRowDeleting (args);
- if (!args.Cancel) {
- RequireBinding ();
- DataSourceView view = GetData ();
- if (view != null)
- view.Delete (currentEditRowKeys, currentEditNewValues, new DataSourceViewOperationCallback (DeleteCallback));
- else {
- GridViewDeletedEventArgs dargs = new GridViewDeletedEventArgs (0, null, currentEditRowKeys, currentEditNewValues);
- OnRowDeleted (dargs);
- }
- }
- }
- bool DeleteCallback (int recordsAffected, Exception exception)
- {
- GridViewDeletedEventArgs dargs = new GridViewDeletedEventArgs (recordsAffected, exception, currentEditRowKeys, currentEditNewValues);
- OnRowDeleted (dargs);
- return dargs.ExceptionHandled;
- }
-
- void EndRowEdit ()
- {
- EditIndex = -1;
- oldEditValues = new DataKey (new OrderedDictionary ());
- currentEditRowKeys = null;
- currentEditOldValues = null;
- currentEditNewValues = null;
- }
- protected internal override void LoadControlState (object ob)
- {
- if (ob == null) return;
- object[] state = (object[]) ob;
- base.LoadControlState (state[0]);
- pageIndex = (int) state[1];
- pageCount = (int) state[2];
- selectedIndex = (int) state[3];
- editIndex = (int) state[4];
- sortExpression = (string) state[5];
- sortDirection = (SortDirection) state[6];
- DataKeyNames = (string []) state [7];
- }
-
- protected internal override object SaveControlState ()
- {
- object bstate = base.SaveControlState ();
- return new object[] {
- bstate, pageIndex, pageCount, selectedIndex, editIndex, sortExpression, sortDirection, DataKeyNames
- };
- }
-
- protected override void TrackViewState()
- {
- base.TrackViewState();
- if (columns != null) ((IStateManager)columns).TrackViewState();
- if (pagerSettings != null) ((IStateManager)pagerSettings).TrackViewState();
- if (alternatingRowStyle != null) ((IStateManager)alternatingRowStyle).TrackViewState();
- if (footerStyle != null) ((IStateManager)footerStyle).TrackViewState();
- if (headerStyle != null) ((IStateManager)headerStyle).TrackViewState();
- if (pagerStyle != null) ((IStateManager)pagerStyle).TrackViewState();
- if (rowStyle != null) ((IStateManager)rowStyle).TrackViewState();
- if (selectedRowStyle != null) ((IStateManager)selectedRowStyle).TrackViewState();
- if (editRowStyle != null) ((IStateManager)editRowStyle).TrackViewState();
- if (emptyDataRowStyle != null) ((IStateManager)emptyDataRowStyle).TrackViewState();
- if (keys != null) ((IStateManager)keys).TrackViewState();
- if (autoFieldProperties != null) {
- foreach (IStateManager sm in autoFieldProperties)
- sm.TrackViewState ();
- }
- }
- protected override object SaveViewState()
- {
- object[] states = new object [14];
- states[0] = base.SaveViewState();
- states[1] = (columns == null ? null : ((IStateManager)columns).SaveViewState());
- states[2] = (pagerSettings == null ? null : ((IStateManager)pagerSettings).SaveViewState());
- states[3] = (alternatingRowStyle == null ? null : ((IStateManager)alternatingRowStyle).SaveViewState());
- states[4] = (footerStyle == null ? null : ((IStateManager)footerStyle).SaveViewState());
- states[5] = (headerStyle == null ? null : ((IStateManager)headerStyle).SaveViewState());
- states[6] = (pagerStyle == null ? null : ((IStateManager)pagerStyle).SaveViewState());
- states[7] = (rowStyle == null ? null : ((IStateManager)rowStyle).SaveViewState());
- states[8] = (selectedRowStyle == null ? null : ((IStateManager)selectedRowStyle).SaveViewState());
- states[9] = (editRowStyle == null ? null : ((IStateManager)editRowStyle).SaveViewState());
- states[10] = (emptyDataRowStyle == null ? null : ((IStateManager)emptyDataRowStyle).SaveViewState());
- states[11] = (keys == null ? null : ((IStateManager)keys).SaveViewState());
- states[12] = (oldEditValues == null ? null : ((IStateManager)oldEditValues).SaveViewState());
-
- if (autoFieldProperties != null) {
- object[] data = new object [autoFieldProperties.Length];
- bool allNull = true;
- for (int n=0; n<data.Length; n++) {
- data [n] = ((IStateManager)autoFieldProperties [n]).SaveViewState ();
- if (data [n] != null) allNull = false;
- }
- if (!allNull) states [13] = data;
- }
- for (int i = states.Length - 1; i >= 0; i--) {
- if (states [i] != null)
- return states;
- }
- return null;
- }
- protected override void LoadViewState (object savedState)
- {
- if (savedState == null) {
- base.LoadViewState (null);
- return;
- }
- object [] states = (object []) savedState;
-
- if (states[13] != null) {
- object[] data = (object[]) states [13];
- autoFieldProperties = new AutoGeneratedFieldProperties [data.Length];
- for (int n=0; n<data.Length; n++) {
- IStateManager p = new AutoGeneratedFieldProperties ();
- p.TrackViewState ();
- p.LoadViewState (data [n]);
- autoFieldProperties [n] = (AutoGeneratedFieldProperties) p;
- }
- }
- base.LoadViewState (states[0]);
- EnsureChildControls ();
-
- if (states[1] != null) ((IStateManager)Columns).LoadViewState (states[1]);
- if (states[2] != null) ((IStateManager)PagerSettings).LoadViewState (states[2]);
- if (states[3] != null) ((IStateManager)AlternatingRowStyle).LoadViewState (states[3]);
- if (states[4] != null) ((IStateManager)FooterStyle).LoadViewState (states[4]);
- if (states[5] != null) ((IStateManager)HeaderStyle).LoadViewState (states[5]);
- if (states[6] != null) ((IStateManager)PagerStyle).LoadViewState (states[6]);
- if (states[7] != null) ((IStateManager)RowStyle).LoadViewState (states[7]);
- if (states[8] != null) ((IStateManager)SelectedRowStyle).LoadViewState (states[8]);
- if (states[9] != null) ((IStateManager)EditRowStyle).LoadViewState (states[9]);
- if (states[10] != null) ((IStateManager)EmptyDataRowStyle).LoadViewState (states[10]);
- if (states[11] != null) ((IStateManager)DataKeys).LoadViewState (states[11]);
- if (states[12] != null && oldEditValues != null) ((IStateManager)oldEditValues).LoadViewState (states[12]);
- }
-
- void ICallbackEventHandler.RaiseCallbackEvent (string eventArgs)
- {
- RaiseCallbackEvent (eventArgs);
- }
-
- string callbackResult;
- protected virtual void RaiseCallbackEvent (string eventArgs)
- {
- string[] clientData = eventArgs.Split ('|');
- pageIndex = int.Parse (clientData[0]);
- sortExpression = HttpUtility.UrlDecode (clientData[1]);
- if (sortExpression == "") sortExpression = null;
- RequireBinding ();
-
- RaisePostBackEvent (clientData[2]);
- EnsureDataBound ();
-
- StringWriter sw = new StringWriter ();
- sw.Write (PageIndex.ToString() + '|' + SortExpression + '|');
- HtmlTextWriter writer = new HtmlTextWriter (sw);
- RenderGrid (writer);
- callbackResult = sw.ToString ();
- }
-
- string ICallbackEventHandler.GetCallbackResult ()
- {
- return GetCallbackResult ();
- }
- protected virtual string GetCallbackResult ()
- {
- return callbackResult;
- }
- string ICallbackContainer.GetCallbackScript (IButtonControl control, string argument)
- {
- return GetCallbackScript (control, argument);
- }
-
- protected virtual string GetCallbackScript (IButtonControl control, string argument)
- {
- if (EnableSortingAndPagingCallbacks)
- return "javascript:GridView_ClientEvent (\"" + ClientID + "\",\"" + control.CommandName + "$" + control.CommandArgument + "\"); return false;";
- else
- return null;
- }
-
- [MonoTODO]
- protected override void OnPagePreLoad (object sender, EventArgs e)
- {
- base.OnPagePreLoad (sender, e);
- }
-
- protected internal override void OnPreRender (EventArgs e)
- {
- base.OnPreRender (e);
-
- if (EnableSortingAndPagingCallbacks)
- {
- if (!Page.ClientScript.IsClientScriptIncludeRegistered (typeof(GridView), "GridView.js")) {
- string url = Page.ClientScript.GetWebResourceUrl (typeof(GridView), "GridView.js");
- Page.ClientScript.RegisterClientScriptInclude (typeof(GridView), "GridView.js", url);
- }
-
- string cgrid = ClientID + "_data";
- string script = string.Format ("var {0} = new Object ();\n", cgrid);
- script += string.Format ("{0}.pageIndex = {1};\n", cgrid, ClientScriptManager.GetScriptLiteral (PageIndex));
- script += string.Format ("{0}.sortExp = {1};\n", cgrid, ClientScriptManager.GetScriptLiteral (SortExpression == null ? "" : SortExpression));
- script += string.Format ("{0}.uid = {1};\n", cgrid, ClientScriptManager.GetScriptLiteral (UniqueID));
- Page.ClientScript.RegisterStartupScript (typeof(TreeView), this.UniqueID, script, true);
-
- // Make sure the basic script infrastructure is rendered
- Page.ClientScript.GetCallbackEventReference (this, "null", "", "null");
- Page.ClientScript.GetPostBackClientHyperlink (this, "");
- }
- }
- protected internal override void Render (HtmlTextWriter writer)
- {
- if (EnableSortingAndPagingCallbacks)
- writer.AddAttribute (HtmlTextWriterAttribute.Id, ClientID);
- writer.RenderBeginTag (HtmlTextWriterTag.Div);
- RenderGrid (writer);
- writer.RenderEndTag ();
- }
-
- void RenderGrid (HtmlTextWriter writer)
- {
- if (table == null)
- return;
- table.Caption = Caption;
- table.CaptionAlign = CaptionAlign;
- table.RenderBeginTag (writer);
-
- foreach (GridViewRow row in table.Rows)
- {
- switch (row.RowType) {
- case DataControlRowType.Header:
- if (!ShowHeader) continue;
- if (headerStyle != null)headerStyle.AddAttributesToRender (writer, row);
- break;
- case DataControlRowType.Footer:
- if (!ShowFooter) continue;
- if (footerStyle != null) footerStyle.AddAttributesToRender (writer, row);
- break;
- case DataControlRowType.Pager:
- if (pagerStyle != null) pagerStyle.AddAttributesToRender (writer, row);
- break;
- case DataControlRowType.EmptyDataRow:
- if (emptyDataRowStyle != null) emptyDataRowStyle.AddAttributesToRender (writer, row);
- break;
- default:
- break;
- }
- if ((row.RowState & DataControlRowState.Normal) != 0 && rowStyle != null)
- rowStyle.AddAttributesToRender (writer, row);
- if ((row.RowState & DataControlRowState.Alternate) != 0 && alternatingRowStyle != null)
- alternatingRowStyle.AddAttributesToRender (writer, row);
- if ((row.RowState & DataControlRowState.Edit) != 0 && editRowStyle != null)
- editRowStyle.AddAttributesToRender (writer, row);
- if ((row.RowState & DataControlRowState.Selected) != 0 && selectedRowStyle != null)
- selectedRowStyle.AddAttributesToRender (writer, row);
-
- row.RenderBeginTag (writer);
-
- foreach (TableCell cell in row.Cells) {
- DataControlFieldCell fcell = cell as DataControlFieldCell;
- if (fcell != null) {
- Style cellStyle = null;
- switch (row.RowType) {
- case DataControlRowType.Header: cellStyle = fcell.ContainingField.HeaderStyle; break;
- case DataControlRowType.Footer: cellStyle = fcell.ContainingField.FooterStyle; break;
- default: cellStyle = fcell.ContainingField.ItemStyle; break;
- }
- if (cellStyle != null)
- cellStyle.AddAttributesToRender (writer, cell);
- }
- cell.Render (writer);
- }
- row.RenderEndTag (writer);
- }
- table.RenderEndTag (writer);
- }
- [MonoTODO]
- PostBackOptions IPostBackContainer.GetPostBackOptions (IButtonControl control)
- {
- PostBackOptions pbo = new PostBackOptions (this, control.CommandName + "$" + control.CommandArgument);
- return pbo;
- }
- }
- }
- #endif
|