| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536 |
- //
- // System.Web.UI.WebControls.FormView.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.FormViewDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
- [ControlValuePropertyAttribute ("SelectedValue")]
- [DefaultEventAttribute ("PageIndexChanging")]
- [AspNetHostingPermissionAttribute (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
- [AspNetHostingPermissionAttribute (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
- public class FormView: CompositeDataBoundControl, IDataItemContainer, INamingContainer, IPostBackEventHandler, IPostBackContainer
- {
- object dataItem;
-
- Table table;
- FormViewRow headerRow;
- FormViewRow footerRow;
- FormViewRow bottomPagerRow;
- FormViewRow topPagerRow;
- FormViewRow itemRow;
-
- IOrderedDictionary currentEditRowKeys;
- IOrderedDictionary currentEditNewValues;
- IOrderedDictionary currentEditOldValues;
-
- ITemplate pagerTemplate;
- ITemplate emptyDataTemplate;
- ITemplate headerTemplate;
- ITemplate footerTemplate;
- ITemplate editItemTemplate;
- ITemplate insertItemTemplate;
- ITemplate itemTemplate;
-
- PropertyDescriptor[] cachedKeyProperties;
- readonly string[] emptyKeys = new string[0];
- readonly string unhandledEventExceptionMessage = "The FormView '{0}' fired event {1} which wasn't handled.";
-
- // View state
- PagerSettings pagerSettings;
-
- TableItemStyle editRowStyle;
- TableItemStyle insertRowStyle;
- TableItemStyle emptyDataRowStyle;
- TableItemStyle footerStyle;
- TableItemStyle headerStyle;
- TableItemStyle pagerStyle;
- TableItemStyle rowStyle;
-
- IOrderedDictionary _keyTable;
- DataKey key;
- DataKey oldEditValues;
-
- private static readonly object PageIndexChangedEvent = new object();
- private static readonly object PageIndexChangingEvent = new object();
- private static readonly object ItemCommandEvent = new object();
- private static readonly object ItemCreatedEvent = new object();
- private static readonly object ItemDeletedEvent = new object();
- private static readonly object ItemDeletingEvent = new object();
- private static readonly object ItemInsertedEvent = new object();
- private static readonly object ItemInsertingEvent = new object();
- private static readonly object ModeChangingEvent = new object();
- private static readonly object ModeChangedEvent = new object();
- private static readonly object ItemUpdatedEvent = new object();
- private static readonly object ItemUpdatingEvent = new object();
-
- // Control state
- int pageIndex;
- FormViewMode currentMode = FormViewMode.ReadOnly;
- bool hasCurrentMode;
- int pageCount;
-
- public event EventHandler PageIndexChanged {
- add { Events.AddHandler (PageIndexChangedEvent, value); }
- remove { Events.RemoveHandler (PageIndexChangedEvent, value); }
- }
-
- public event FormViewPageEventHandler PageIndexChanging {
- add { Events.AddHandler (PageIndexChangingEvent, value); }
- remove { Events.RemoveHandler (PageIndexChangingEvent, value); }
- }
-
- public event FormViewCommandEventHandler ItemCommand {
- add { Events.AddHandler (ItemCommandEvent, value); }
- remove { Events.RemoveHandler (ItemCommandEvent, value); }
- }
-
- public event EventHandler ItemCreated {
- add { Events.AddHandler (ItemCreatedEvent, value); }
- remove { Events.RemoveHandler (ItemCreatedEvent, value); }
- }
-
- public event FormViewDeletedEventHandler ItemDeleted {
- add { Events.AddHandler (ItemDeletedEvent, value); }
- remove { Events.RemoveHandler (ItemDeletedEvent, value); }
- }
-
- public event FormViewDeleteEventHandler ItemDeleting {
- add { Events.AddHandler (ItemDeletingEvent, value); }
- remove { Events.RemoveHandler (ItemDeletingEvent, value); }
- }
-
- public event FormViewInsertedEventHandler ItemInserted {
- add { Events.AddHandler (ItemInsertedEvent, value); }
- remove { Events.RemoveHandler (ItemInsertedEvent, value); }
- }
-
- public event FormViewInsertEventHandler ItemInserting {
- add { Events.AddHandler (ItemInsertingEvent, value); }
- remove { Events.RemoveHandler (ItemInsertingEvent, value); }
- }
-
- public event FormViewModeEventHandler ModeChanging {
- add { Events.AddHandler (ModeChangingEvent, value); }
- remove { Events.RemoveHandler (ModeChangingEvent, value); }
- }
-
- public event EventHandler ModeChanged {
- add { Events.AddHandler (ModeChangedEvent, value); }
- remove { Events.RemoveHandler (ModeChangedEvent, value); }
- }
-
- public event FormViewUpdatedEventHandler ItemUpdated {
- add { Events.AddHandler (ItemUpdatedEvent, value); }
- remove { Events.RemoveHandler (ItemUpdatedEvent, value); }
- }
-
- public event FormViewUpdateEventHandler ItemUpdating {
- add { Events.AddHandler (ItemUpdatingEvent, value); }
- remove { Events.RemoveHandler (ItemUpdatingEvent, 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 (FormViewPageEventArgs e)
- {
- if (Events != null) {
- FormViewPageEventHandler eh = (FormViewPageEventHandler) Events [PageIndexChangingEvent];
- if (eh != null) {
- eh (this, e);
- return;
- }
- }
- if (!IsBoundUsingDataSourceID)
- throw new HttpException (String.Format (unhandledEventExceptionMessage, ID, "PageIndexChanging"));
- }
-
- protected virtual void OnItemCommand (FormViewCommandEventArgs e)
- {
- if (Events != null) {
- FormViewCommandEventHandler eh = (FormViewCommandEventHandler) Events [ItemCommandEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnItemCreated (EventArgs e)
- {
- if (Events != null) {
- EventHandler eh = (EventHandler) Events [ItemCreatedEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnItemDeleted (FormViewDeletedEventArgs e)
- {
- if (Events != null) {
- FormViewDeletedEventHandler eh = (FormViewDeletedEventHandler) Events [ItemDeletedEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnItemInserted (FormViewInsertedEventArgs e)
- {
- if (Events != null) {
- FormViewInsertedEventHandler eh = (FormViewInsertedEventHandler) Events [ItemInsertedEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnItemInserting (FormViewInsertEventArgs e)
- {
- if (Events != null) {
- FormViewInsertEventHandler eh = (FormViewInsertEventHandler) Events [ItemInsertingEvent];
- if (eh != null) {
- eh (this, e);
- return;
- }
- }
- if (!IsBoundUsingDataSourceID)
- throw new HttpException (String.Format (unhandledEventExceptionMessage, ID, "ItemInserting"));
- }
-
- protected virtual void OnItemDeleting (FormViewDeleteEventArgs e)
- {
- if (Events != null) {
- FormViewDeleteEventHandler eh = (FormViewDeleteEventHandler) Events [ItemDeletingEvent];
- if (eh != null) {
- eh (this, e);
- return;
- }
- }
- if (!IsBoundUsingDataSourceID)
- throw new HttpException (String.Format (unhandledEventExceptionMessage, ID, "ItemDeleting"));
- }
-
- protected virtual void OnModeChanged (EventArgs e)
- {
- if (Events != null) {
- EventHandler eh = (EventHandler) Events [ModeChangedEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnModeChanging (FormViewModeEventArgs e)
- {
- if (Events != null) {
- FormViewModeEventHandler eh = (FormViewModeEventHandler) Events [ModeChangingEvent];
- if (eh != null) {
- eh (this, e);
- return;
- }
- }
- if (!IsBoundUsingDataSourceID)
- throw new HttpException (String.Format (unhandledEventExceptionMessage, ID, "ModeChanging"));
- }
-
- protected virtual void OnItemUpdated (FormViewUpdatedEventArgs e)
- {
- if (Events != null) {
- FormViewUpdatedEventHandler eh = (FormViewUpdatedEventHandler) Events [ItemUpdatedEvent];
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnItemUpdating (FormViewUpdateEventArgs e)
- {
- if (Events != null) {
- FormViewUpdateEventHandler eh = (FormViewUpdateEventHandler) Events [ItemUpdatingEvent];
- if (eh != null) {
- eh (this, e);
- return;
- }
- }
- if (!IsBoundUsingDataSourceID)
- throw new HttpException (String.Format (unhandledEventExceptionMessage, ID, "ItemUpdating"));
- }
-
-
- [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 ();
- }
- }
-
- [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 FormViewRow BottomPagerRow {
- get {
- EnsureChildControls ();
- 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;
- }
- }
-
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public FormViewMode CurrentMode {
- get {
- return hasCurrentMode ? currentMode : DefaultMode;
- }
- private set {
- hasCurrentMode = true;
- currentMode = value;
- }
- }
- FormViewMode defaultMode;
- [DefaultValueAttribute (FormViewMode.ReadOnly)]
- [WebCategoryAttribute ("Behavior")]
- public virtual FormViewMode DefaultMode {
- get {
- return defaultMode;
- }
- set {
- defaultMode = value;
- RequireBinding ();
- }
- }
- string[] dataKeyNames;
- [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 emptyKeys;
- return dataKeyNames;
- }
- set {
- dataKeyNames = value;
- RequireBinding ();
- }
- }
-
- IOrderedDictionary KeyTable {
- get {
- if (_keyTable == null) {
- _keyTable = new OrderedDictionary (DataKeyNames.Length);
- }
- return _keyTable;
- }
- }
- [BrowsableAttribute (false)]
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- public virtual DataKey DataKey {
- get {
- if (key == null) {
- key= new DataKey (KeyTable);
- }
- return key;
- }
- }
- DataKey OldEditValues {
- get {
- if (oldEditValues == null) {
- oldEditValues = new DataKey (new OrderedDictionary ());
- }
- return oldEditValues;
- }
- }
- [DefaultValue (null)]
- [TemplateContainer (typeof(FormView), BindingDirection.TwoWay)]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [Browsable (false)]
- public virtual ITemplate EditItemTemplate {
- get { return editItemTemplate; }
- set { editItemTemplate = value; RequireBinding (); }
- }
- [WebCategoryAttribute ("Styles")]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [NotifyParentProperty (true)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- [DefaultValueAttribute (null)]
- 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)]
- [DefaultValueAttribute (null)]
- public TableItemStyle EmptyDataRowStyle {
- get {
- if (emptyDataRowStyle == null) {
- emptyDataRowStyle = new TableItemStyle ();
- if (IsTrackingViewState)
- emptyDataRowStyle.TrackViewState();
- }
- return emptyDataRowStyle;
- }
- }
-
- [DefaultValue (null)]
- [TemplateContainer (typeof(FormView), 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 ();
- }
- }
-
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public virtual FormViewRow FooterRow {
- get {
- EnsureChildControls ();
- return footerRow;
- }
- }
-
- [DefaultValue (null)]
- [TemplateContainer (typeof(FormView), BindingDirection.OneWay)]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [Browsable (false)]
- public virtual ITemplate FooterTemplate {
- get { return footerTemplate; }
- set { footerTemplate = value; RequireBinding (); }
- }
- [LocalizableAttribute (true)]
- [WebCategoryAttribute ("Appearance")]
- [DefaultValueAttribute ("")]
- public virtual string FooterText {
- get {
- object ob = ViewState ["FooterText"];
- if (ob != null) return (string) ob;
- return string.Empty;
- }
- set {
- ViewState ["FooterText"] = value;
- RequireBinding ();
- }
- }
-
- [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.None)]
- public virtual GridLines GridLines {
- get {
- if (ControlStyleCreated)
- return ((TableStyle) ControlStyle).GridLines;
- return GridLines.None;
- }
- set {
- ((TableStyle) ControlStyle).GridLines = value;
- }
- }
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public virtual FormViewRow HeaderRow {
- get {
- EnsureChildControls ();
- return headerRow;
- }
- }
-
- [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;
- }
- }
-
- [DefaultValue (null)]
- [TemplateContainer (typeof(FormView), BindingDirection.OneWay)]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [Browsable (false)]
- public virtual ITemplate HeaderTemplate {
- get { return headerTemplate; }
- set { headerTemplate = value; RequireBinding (); }
- }
- [LocalizableAttribute (true)]
- [WebCategoryAttribute ("Appearance")]
- [DefaultValueAttribute ("")]
- public virtual string HeaderText {
- get {
- object ob = ViewState ["HeaderText"];
- if (ob != null) return (string) ob;
- return string.Empty;
- }
- set {
- ViewState ["HeaderText"] = value;
- RequireBinding ();
- }
- }
-
- [Category ("Layout")]
- [DefaultValueAttribute (HorizontalAlign.NotSet)]
- public virtual HorizontalAlign HorizontalAlign {
- get {
- if (ControlStyleCreated)
- return ((TableStyle) ControlStyle).HorizontalAlign;
- return HorizontalAlign.NotSet;
- }
- set {
- ((TableStyle) ControlStyle).HorizontalAlign = value;
- }
- }
- [DefaultValue (null)]
- [TemplateContainer (typeof(FormView), BindingDirection.TwoWay)]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [Browsable (false)]
- public virtual ITemplate InsertItemTemplate {
- get { return insertItemTemplate; }
- set { insertItemTemplate = value; RequireBinding (); }
- }
- [WebCategoryAttribute ("Styles")]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [NotifyParentProperty (true)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- [DefaultValueAttribute (null)]
- public TableItemStyle InsertRowStyle {
- get {
- if (insertRowStyle == null) {
- insertRowStyle = new TableItemStyle ();
- if (IsTrackingViewState)
- insertRowStyle.TrackViewState();
- }
- return insertRowStyle;
- }
- }
- [DefaultValue (null)]
- [TemplateContainer (typeof(FormView), BindingDirection.TwoWay)]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [Browsable (false)]
- public virtual ITemplate ItemTemplate {
- get { return itemTemplate; }
- set { itemTemplate = value; RequireBinding (); }
- }
-
- [BrowsableAttribute (false)]
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- public virtual int PageCount {
- get {
- return pageCount;
- }
- }
- [WebCategoryAttribute ("Paging")]
- [BindableAttribute (true, BindingDirection.OneWay)]
- [DefaultValueAttribute (0)]
- public virtual int PageIndex {
- get {
- return pageIndex;
- }
- set {
- if (value < 0)
- throw new ArgumentOutOfRangeException ("PageIndex must be non-negative");
- if (pageIndex == value)
- return;
- pageIndex = 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 (); }
- }
-
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public virtual FormViewRow Row {
- get {
- EnsureChildControls ();
- return itemRow;
- }
- }
-
- [WebCategoryAttribute ("Styles")]
- [PersistenceMode (PersistenceMode.InnerProperty)]
- [NotifyParentProperty (true)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Content)]
- [DefaultValue (null)]
- public TableItemStyle RowStyle {
- get {
- if (rowStyle == null) {
- rowStyle = new TableItemStyle ();
- if (IsTrackingViewState)
- rowStyle.TrackViewState();
- }
- return rowStyle;
- }
- }
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public object SelectedValue {
- get { return DataKey.Value; }
- }
-
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public virtual FormViewRow TopPagerRow {
- get {
- EnsureChildControls ();
- return topPagerRow;
- }
- }
-
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public virtual object DataItem {
- get {
- EnsureDataBound ();
- return dataItem;
- }
- }
-
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public int DataItemCount {
- get { return PageCount; }
- }
-
- [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public virtual int DataItemIndex {
- get { return PageIndex; }
- }
- int IDataItemContainer.DataItemIndex {
- get { return DataItemIndex; }
- }
-
- int IDataItemContainer.DisplayIndex {
- get { return PageIndex; }
- }
-
- public virtual bool IsBindableType (Type type)
- {
- return type.IsPrimitive || type == typeof (string) || type == typeof (DateTime) || type == typeof (Guid) || type == typeof (Decimal);
- }
-
- protected override DataSourceSelectArguments CreateDataSourceSelectArguments ()
- {
- DataSourceSelectArguments arg = new DataSourceSelectArguments ();
- DataSourceView view = GetData ();
- if (AllowPaging && view.CanPage) {
- arg.StartRowIndex = PageIndex;
- if (view.CanRetrieveTotalRowCount) {
- arg.RetrieveTotalRowCount = true;
- arg.MaximumRows = 1;
- }
- else {
- arg.MaximumRows = -1;
- }
- }
- return arg;
- }
-
- protected virtual FormViewRow CreateRow (int rowIndex, DataControlRowType rowType, DataControlRowState rowState)
- {
- FormViewRow row = new FormViewRow (rowIndex, rowType, rowState);
- OnItemCreated (EventArgs.Empty);
- return row;
- }
-
- void RequireBinding ()
- {
- if (Initialized) {
- RequiresDataBinding = true;
- }
- }
-
- protected virtual Table CreateTable ()
- {
- return new ContainedTable (this);
- }
- protected override void EnsureDataBound ()
- {
- base.EnsureDataBound ();
- }
-
- protected override Style CreateControlStyle ()
- {
- TableStyle style = new TableStyle (ViewState);
- style.CellSpacing = 0;
- return style;
- }
-
- protected override int CreateChildControls (IEnumerable data, bool dataBinding)
- {
- PagedDataSource dataSource = new PagedDataSource ();
- dataSource.DataSource = data;
- dataSource.AllowPaging = AllowPaging;
- dataSource.PageSize = 1;
- dataSource.CurrentPageIndex = PageIndex;
- if (dataBinding && CurrentMode != FormViewMode.Insert) {
- DataSourceView view = GetData ();
- if (view != null && view.CanPage) {
- dataSource.AllowServerPaging = true;
- if (SelectArguments.RetrieveTotalRowCount)
- dataSource.VirtualCount = SelectArguments.TotalRowCount;
- }
- }
- pageCount = dataSource.DataSourceCount;
- bool showPager = AllowPaging && (pageCount > 1);
-
- Controls.Clear ();
- table = CreateTable ();
- Controls.Add (table);
- // Gets the current data item
-
- IEnumerator e = dataSource.GetEnumerator ();
- dataItem = null;
- if (AllowPaging) {
- if (e.MoveNext ())
- dataItem = e.Current;
- }
- else
- for (int page = 0; e.MoveNext (); page++ )
- if (page == PageIndex)
- dataItem = e.Current;
-
- // Main table creation
-
- if (HeaderText.Length != 0 || headerTemplate != null) {
- headerRow = CreateRow (-1, DataControlRowType.Header, DataControlRowState.Normal);
- InitializeRow (headerRow);
- table.Rows.Add (headerRow);
- }
-
- if (showPager && PagerSettings.Position == PagerPosition.Top || PagerSettings.Position == PagerPosition.TopAndBottom) {
- topPagerRow = CreateRow (-1, DataControlRowType.Pager, DataControlRowState.Normal);
- InitializePager (topPagerRow, dataSource);
- table.Rows.Add (topPagerRow);
- }
- if (pageCount > 0) {
- DataControlRowState rstate = GetRowState ();
- itemRow = CreateRow (0, DataControlRowType.DataRow, rstate);
- InitializeRow (itemRow);
- table.Rows.Add (itemRow);
- } else {
- switch (CurrentMode) {
- case FormViewMode.Edit:
- itemRow = CreateRow (-1, DataControlRowType.EmptyDataRow, DataControlRowState.Edit);
- break;
- case FormViewMode.Insert:
- itemRow = CreateRow (-1, DataControlRowType.DataRow, DataControlRowState.Insert);
- break;
- default:
- itemRow = CreateRow (-1, DataControlRowType.EmptyDataRow, DataControlRowState.Normal);
- break;
- }
- table.Rows.Add (itemRow);
- InitializeRow (itemRow);
- }
- if (FooterText.Length != 0 || footerTemplate != null) {
- footerRow = CreateRow (-1, DataControlRowType.Footer, DataControlRowState.Normal);
- InitializeRow (footerRow);
- table.Rows.Add (footerRow);
- }
-
- if (showPager && PagerSettings.Position == PagerPosition.Bottom || PagerSettings.Position == PagerPosition.TopAndBottom) {
- bottomPagerRow = CreateRow (0, DataControlRowType.Pager, DataControlRowState.Normal);
- InitializePager (bottomPagerRow, dataSource);
- table.Rows.Add (bottomPagerRow);
- }
- if (dataBinding)
- DataBind (false);
-
- return dataSource.DataSourceCount;
- }
-
- DataControlRowState GetRowState ()
- {
- DataControlRowState rstate = DataControlRowState.Normal;
- if (CurrentMode == FormViewMode.Edit) rstate |= DataControlRowState.Edit;
- else if (CurrentMode == FormViewMode.Insert) rstate |= DataControlRowState.Insert;
- return rstate;
- }
-
- protected virtual void InitializePager (FormViewRow row, PagedDataSource dataSource)
- {
- TableCell cell = new TableCell ();
- cell.ColumnSpan = 2;
- if (pagerTemplate != null)
- pagerTemplate.InstantiateIn (cell);
- else
- cell.Controls.Add (PagerSettings.CreatePagerControl (dataSource.CurrentPageIndex, dataSource.PageCount));
-
- row.Cells.Add (cell);
- }
-
- protected virtual void InitializeRow (FormViewRow row)
- {
- TableCell cell = new TableCell ();
-
- if (row.RowType == DataControlRowType.DataRow)
- {
- if ((row.RowState & DataControlRowState.Edit) != 0) {
- if (editItemTemplate != null)
- editItemTemplate.InstantiateIn (cell);
- else
- row.Visible = false;
- } else if ((row.RowState & DataControlRowState.Insert) != 0) {
- if (insertItemTemplate != null)
- insertItemTemplate.InstantiateIn (cell);
- else
- row.Visible = false;
- }
- else if (itemTemplate != null)
- itemTemplate.InstantiateIn (cell);
- else
- row.Visible = false;
- }
- else if (row.RowType == DataControlRowType.EmptyDataRow)
- {
- if (emptyDataTemplate != null)
- emptyDataTemplate.InstantiateIn (cell);
- else
- cell.Text = EmptyDataText;
- }
- else if (row.RowType == DataControlRowType.Footer)
- {
- if (footerTemplate != null)
- footerTemplate.InstantiateIn (cell);
- else
- cell.Text = FooterText;
- }
- else if (row.RowType == DataControlRowType.Header)
- {
- if (headerTemplate != null)
- headerTemplate.InstantiateIn (cell);
- else
- cell.Text = HeaderText;
- }
- cell.ColumnSpan = 2;
- row.Cells.Add (cell);
- }
-
- void FillRowDataKey (object dataItem)
- {
- KeyTable.Clear ();
- if (cachedKeyProperties == null) {
- PropertyDescriptorCollection props = TypeDescriptor.GetProperties (dataItem);
- cachedKeyProperties = new PropertyDescriptor [DataKeyNames.Length];
- for (int n=0; n<DataKeyNames.Length; n++) {
- PropertyDescriptor p = props.Find (DataKeyNames [n], true);
- if (p == null)
- throw new InvalidOperationException ("Property '" + DataKeyNames[n] + "' not found in object of type " + dataItem.GetType());
- cachedKeyProperties [n] = p;
- }
- }
- foreach (PropertyDescriptor p in cachedKeyProperties)
- KeyTable [p.Name] = p.GetValue (dataItem);
- }
-
- IOrderedDictionary GetRowValues (bool includePrimaryKey)
- {
- OrderedDictionary dic = new OrderedDictionary ();
- ExtractRowValues (dic, includePrimaryKey);
- return dic;
- }
-
- protected virtual void ExtractRowValues (IOrderedDictionary fieldValues, bool includeKeys)
- {
- if (Row == null)
- return;
- DataControlRowState rowState = Row.RowState;
- IBindableTemplate bt;
-
- if ((rowState & DataControlRowState.Insert) != 0)
- bt = insertItemTemplate as IBindableTemplate;
- else if ((rowState & DataControlRowState.Edit) != 0)
- bt = editItemTemplate as IBindableTemplate;
- else
- return;
-
- if (bt != null) {
- IOrderedDictionary values = bt.ExtractValues (Row.Cells [0]);
- foreach (DictionaryEntry e in values) {
- if (includeKeys || Array.IndexOf (DataKeyNames, e.Key) == -1)
- fieldValues [e.Key] = e.Value;
- }
- }
- }
-
- protected override HtmlTextWriterTag TagKey {
- get {
- return HtmlTextWriterTag.Table;
- }
- }
-
- public sealed override void DataBind ()
- {
- if (CurrentMode == FormViewMode.Insert) {
- RequiresDataBinding = false;
- PerformDataBinding (new object [] { null });
- return;
- }
- cachedKeyProperties = null;
- base.DataBind ();
-
- if (pageCount > 0) {
- if (CurrentMode == FormViewMode.Edit)
- oldEditValues = new DataKey (GetRowValues (true));
- FillRowDataKey (dataItem);
- key = new DataKey (KeyTable);
- }
- }
-
- protected internal override void PerformDataBinding (IEnumerable data)
- {
- base.PerformDataBinding (data);
- }
- protected internal virtual void PrepareControlHierarchy ()
- {
- if (table == null)
- return;
- table.Caption = Caption;
- table.CaptionAlign = CaptionAlign;
- foreach (FormViewRow row in table.Rows) {
- switch (row.RowType) {
- case DataControlRowType.Header:
- if (headerStyle != null && !headerStyle.IsEmpty)
- row.ControlStyle.CopyFrom (headerStyle);
- break;
- case DataControlRowType.Footer:
- if (footerStyle != null && !footerStyle.IsEmpty)
- row.ControlStyle.CopyFrom (footerStyle);
- break;
- case DataControlRowType.Pager:
- if (pagerStyle != null && !pagerStyle.IsEmpty)
- row.ControlStyle.CopyFrom (pagerStyle);
- break;
- case DataControlRowType.EmptyDataRow:
- if (emptyDataRowStyle != null && !emptyDataRowStyle.IsEmpty)
- row.ControlStyle.CopyFrom (emptyDataRowStyle);
- break;
- case DataControlRowType.DataRow:
- if (rowStyle != null && !rowStyle.IsEmpty)
- row.ControlStyle.CopyFrom (rowStyle);
- if ((row.RowState & (DataControlRowState.Edit | DataControlRowState.Insert)) != 0 && editRowStyle != null && !editRowStyle.IsEmpty)
- row.ControlStyle.CopyFrom (editRowStyle);
- if ((row.RowState & DataControlRowState.Insert) != 0 && insertRowStyle != null && !insertRowStyle.IsEmpty)
- row.ControlStyle.CopyFrom (insertRowStyle);
- break;
- default:
- break;
- }
- }
- }
-
- protected internal override void OnInit (EventArgs e)
- {
- Page.RegisterRequiresControlState (this);
- base.OnInit (e);
- }
-
- protected override bool OnBubbleEvent (object source, EventArgs e)
- {
- FormViewCommandEventArgs args = e as FormViewCommandEventArgs;
- if (args != null) {
- OnItemCommand (args);
- ProcessEvent (args.CommandName, args.CommandArgument as string);
- return true;
- }
- return base.OnBubbleEvent (source, e);
- }
-
- void IPostBackEventHandler.RaisePostBackEvent(string eventArgument)
- {
- RaisePostBackEvent (eventArgument);
- }
- 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:
- newIndex = PageIndex + 1;
- break;
- case DataControlCommands.PreviousPageCommandArgument:
- newIndex = PageIndex - 1;
- break;
- default:
- int paramIndex = 0;
- int.TryParse (param, out paramIndex);
- newIndex = paramIndex - 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.EditCommandName:
- ProcessChangeMode (FormViewMode.Edit);
- break;
-
- case DataControlCommands.NewCommandName:
- ProcessChangeMode (FormViewMode.Insert);
- break;
-
- case DataControlCommands.UpdateCommandName:
- UpdateItem (param, true);
- break;
-
- case DataControlCommands.CancelCommandName:
- CancelEdit ();
- break;
-
- case DataControlCommands.DeleteCommandName:
- DeleteItem ();
- break;
-
- case DataControlCommands.InsertCommandName:
- InsertItem (true);
- break;
- }
- }
-
- void ShowPage (int index)
- {
- FormViewPageEventArgs args = new FormViewPageEventArgs (index);
- OnPageIndexChanging (args);
- if (args.Cancel || !IsBoundUsingDataSourceID)
- return;
- int newIndex = args.NewPageIndex;
- if (newIndex < 0 || newIndex >= PageCount)
- return;
- EndRowEdit (false);
- PageIndex = newIndex;
- OnPageIndexChanged (EventArgs.Empty);
- }
-
- public void ChangeMode (FormViewMode newMode)
- {
- CurrentMode = newMode;
- RequireBinding ();
- }
- void ProcessChangeMode (FormViewMode newMode)
- {
- FormViewModeEventArgs args = new FormViewModeEventArgs (newMode, false);
- OnModeChanging (args);
- if (args.Cancel || !IsBoundUsingDataSourceID)
- return;
- ChangeMode (args.NewMode);
- OnModeChanged (EventArgs.Empty);
- }
-
- void CancelEdit ()
- {
- FormViewModeEventArgs args = new FormViewModeEventArgs (FormViewMode.ReadOnly, true);
- OnModeChanging (args);
- if (args.Cancel || !IsBoundUsingDataSourceID)
- return;
- EndRowEdit ();
- }
- public virtual void UpdateItem (bool causesValidation)
- {
- UpdateItem (null, causesValidation);
- }
-
- void UpdateItem (string param, bool causesValidation)
- {
- if (causesValidation && Page != null)
- Page.Validate ();
-
- if (currentMode != FormViewMode.Edit) throw new HttpException ("Must be in Edit mode");
- currentEditOldValues = OldEditValues.Values;
- currentEditRowKeys = DataKey.Values;
- currentEditNewValues = GetRowValues (false);
-
- FormViewUpdateEventArgs args = new FormViewUpdateEventArgs (param, currentEditRowKeys, currentEditOldValues, currentEditNewValues);
- OnItemUpdating (args);
- if (args.Cancel || !IsBoundUsingDataSourceID)
- return;
-
- 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));
- }
- bool UpdateCallback (int recordsAffected, Exception exception)
- {
- FormViewUpdatedEventArgs dargs = new FormViewUpdatedEventArgs (recordsAffected, exception, currentEditRowKeys, currentEditOldValues, currentEditNewValues);
- OnItemUpdated (dargs);
- if (!dargs.KeepInEditMode)
- EndRowEdit ();
- return dargs.ExceptionHandled;
- }
- public virtual void InsertItem (bool causesValidation)
- {
- InsertItem (null, causesValidation);
- }
-
- void InsertItem (string param, bool causesValidation)
- {
- if (causesValidation && Page != null)
- Page.Validate ();
-
- if (currentMode != FormViewMode.Insert) throw new HttpException ("Must be in Insert mode");
-
- currentEditNewValues = GetRowValues (true);
- FormViewInsertEventArgs args = new FormViewInsertEventArgs (param, currentEditNewValues);
- OnItemInserting (args);
- if (args.Cancel || !IsBoundUsingDataSourceID)
- return;
- DataSourceView view = GetData ();
- if (view == null)
- throw new HttpException ("The DataSourceView associated to data bound control was null");
- view.Insert (currentEditNewValues, new DataSourceViewOperationCallback (InsertCallback));
- }
-
- bool InsertCallback (int recordsAffected, Exception exception)
- {
- FormViewInsertedEventArgs dargs = new FormViewInsertedEventArgs (recordsAffected, exception, currentEditNewValues);
- OnItemInserted (dargs);
- if (!dargs.KeepInInsertMode)
- EndRowEdit ();
- return dargs.ExceptionHandled;
- }
- public virtual void DeleteItem ()
- {
- currentEditRowKeys = DataKey.Values;
- currentEditNewValues = GetRowValues (true);
-
- FormViewDeleteEventArgs args = new FormViewDeleteEventArgs (PageIndex, currentEditRowKeys, currentEditNewValues);
- OnItemDeleting (args);
- if (args.Cancel || !IsBoundUsingDataSourceID)
- return;
- if (PageIndex > 0 && PageIndex == PageCount - 1)
- PageIndex--;
-
- RequireBinding ();
-
- DataSourceView view = GetData ();
- if (view != null)
- view.Delete (currentEditRowKeys, currentEditNewValues, new DataSourceViewOperationCallback (DeleteCallback));
- else {
- FormViewDeletedEventArgs dargs = new FormViewDeletedEventArgs (0, null, currentEditRowKeys, currentEditNewValues);
- OnItemDeleted (dargs);
- }
- }
- bool DeleteCallback (int recordsAffected, Exception exception)
- {
- FormViewDeletedEventArgs dargs = new FormViewDeletedEventArgs (recordsAffected, exception, currentEditRowKeys, currentEditNewValues);
- OnItemDeleted (dargs);
- return dargs.ExceptionHandled;
- }
-
- void EndRowEdit ()
- {
- EndRowEdit (true);
- }
- void EndRowEdit (bool switchToDefaultMode)
- {
- if (switchToDefaultMode)
- ChangeMode (DefaultMode);
- oldEditValues = new DataKey (new OrderedDictionary ());
- currentEditRowKeys = null;
- currentEditOldValues = null;
- currentEditNewValues = null;
- RequireBinding ();
- }
- 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];
- CurrentMode = (FormViewMode) state[3];
- defaultMode = (FormViewMode) state[4];
- dataKeyNames = (string[]) state[5];
- if (state [6] != null)
- ((IStateManager) DataKey).LoadViewState (state [6]);
- if (state [7] != null)
- ((IStateManager) OldEditValues).LoadViewState (state [7]);
- }
-
- protected internal override object SaveControlState ()
- {
- object bstate = base.SaveControlState ();
- return new object [] {
- bstate,
- pageIndex,
- pageCount,
- CurrentMode,
- defaultMode,
- dataKeyNames,
- (key == null ? null : ((IStateManager)key).SaveViewState()),
- (oldEditValues == null ? null : ((IStateManager) oldEditValues).SaveViewState ())
- };
- }
-
- protected override void TrackViewState()
- {
- base.TrackViewState();
- if (pagerSettings != null) ((IStateManager)pagerSettings).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 (editRowStyle != null) ((IStateManager)editRowStyle).TrackViewState();
- if (insertRowStyle != null) ((IStateManager)insertRowStyle).TrackViewState();
- if (emptyDataRowStyle != null) ((IStateManager)emptyDataRowStyle).TrackViewState();
- }
- protected override object SaveViewState()
- {
- object[] states = new object [10];
- states[0] = base.SaveViewState();
- states[1] = (pagerSettings == null ? null : ((IStateManager)pagerSettings).SaveViewState());
- states[2] = (footerStyle == null ? null : ((IStateManager)footerStyle).SaveViewState());
- states[3] = (headerStyle == null ? null : ((IStateManager)headerStyle).SaveViewState());
- states[4] = (pagerStyle == null ? null : ((IStateManager)pagerStyle).SaveViewState());
- states[5] = (rowStyle == null ? null : ((IStateManager)rowStyle).SaveViewState());
- states[6] = (insertRowStyle == null ? null : ((IStateManager)insertRowStyle).SaveViewState());
- states[7] = (editRowStyle == null ? null : ((IStateManager)editRowStyle).SaveViewState());
- states[8] = (emptyDataRowStyle == null ? null : ((IStateManager)emptyDataRowStyle).SaveViewState());
-
- 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;
-
- base.LoadViewState (states[0]);
-
- if (states[1] != null) ((IStateManager)PagerSettings).LoadViewState (states[1]);
- if (states[2] != null) ((IStateManager)FooterStyle).LoadViewState (states[2]);
- if (states[3] != null) ((IStateManager)HeaderStyle).LoadViewState (states[3]);
- if (states[4] != null) ((IStateManager)PagerStyle).LoadViewState (states[4]);
- if (states[5] != null) ((IStateManager)RowStyle).LoadViewState (states[5]);
- if (states[6] != null) ((IStateManager)InsertRowStyle).LoadViewState (states[6]);
- if (states[7] != null) ((IStateManager)EditRowStyle).LoadViewState (states[7]);
- if (states[8] != null) ((IStateManager)EmptyDataRowStyle).LoadViewState (states[8]);
- }
-
- protected internal override void Render (HtmlTextWriter writer)
- {
- PrepareControlHierarchy ();
-
- if (table == null)
- return;
- table.Render (writer);
- }
- PostBackOptions IPostBackContainer.GetPostBackOptions (IButtonControl control)
- {
- if (control == null)
- throw new ArgumentNullException ("control");
- if (control.CausesValidation)
- throw new InvalidOperationException ("A button that causes validation in FormView '" + ID + "' is attempting to use the container GridView as the post back target. The button should either turn off validation or use itself as the post back container.");
- PostBackOptions options = new PostBackOptions (this);
- options.Argument = control.CommandName + "$" + control.CommandArgument;
- options.RequiresJavaScriptProtocol = true;
- return options;
- }
- }
- }
- #endif
|