| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461 |
- //
- // System.Web.UI.WebControls.ListControl.cs
- //
- // Authors:
- // Gaurav Vaish ([email protected])
- // Andreas Nahr ([email protected])
- //
- // (C) Gaurav Vaish (2002)
- // (C) 2003 Andreas Nahr
- //
- //
- // 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.
- //
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.ComponentModel.Design;
- using System.Web;
- using System.Web.UI;
- using System.Web.Util;
- namespace System.Web.UI.WebControls
- {
- [DefaultEvent("SelectedIndexChanged")]
- #if !NET_2_0
- [DefaultProperty("DataSource")]
- #endif
- [Designer ("System.Web.UI.Design.WebControls.ListControlDesigner, " + Consts.AssemblySystem_Design, typeof (IDesigner))]
- [DataBindingHandler("System.Web.UI.Design.ListControlDataBindingHandler, " + Consts.AssemblySystem_Design)]
- [ParseChildren(true, "Items")]
- public abstract class ListControl :
- #if NET_2_0
- DataBoundControl
- #else
- WebControl
- #endif
- {
- private static readonly object SelectedIndexChangedEvent = new object();
- #if !NET_2_0
- private object dataSource;
- #endif
-
- private ListItemCollection items;
- private int cachedSelectedIndex = -1;
- private string cachedSelectedValue;
- #if !NET_2_0
- public ListControl(): base(HtmlTextWriterTag.Select)
- {
- }
- #else
- protected override HtmlTextWriterTag TagKey {
- get { return HtmlTextWriterTag.Select; }
- }
- #endif
- [WebCategory ("Action")]
- [WebSysDescription ("Raised when the selected index entry has changed.")]
- public event EventHandler SelectedIndexChanged
- {
- add
- {
- Events.AddHandler(SelectedIndexChangedEvent, value);
- }
- remove
- {
- Events.RemoveHandler(SelectedIndexChangedEvent, value);
- }
- }
- [DefaultValue (false), WebCategory ("Behavior")]
- [WebSysDescription ("The control automatically posts back after changing the text.")]
- public virtual bool AutoPostBack
- {
- get
- {
- object o = ViewState["AutoPostBack"];
- if(o!=null)
- return (bool)o;
- return false;
- }
- set
- {
- ViewState["AutoPostBack"] = value;
- }
- }
- #if !NET_2_0
- [DefaultValue (""), WebCategory ("Data")]
- [WebSysDescription ("The name of the table that is used for binding when a DataSource is specified.")]
- public virtual string DataMember
- {
- get
- {
- object o = ViewState["DataMember"];
- if(o!=null)
- return (string)o;
- return String.Empty;
- }
- set
- {
- ViewState["DataMember"] = value;
- }
- }
- [DefaultValue (null), Bindable (true), WebCategory ("Data")]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [WebSysDescription ("The DataSource that is used for data-binding.")]
- public virtual object DataSource
- {
- get
- {
- return dataSource;
- }
- set
- {
- if(value == null || value is IListSource || value is IEnumerable) {
- dataSource = value;
- return;
- }
- throw new ArgumentException(HttpRuntime.FormatResourceString(ID, "Invalid DataSource Type"));
- }
- }
- #endif
- [DefaultValue (""), WebCategory ("Data")]
- [WebSysDescription ("The field in the datatable that provides the text entry.")]
- public virtual string DataTextField
- {
- get
- {
- object o = ViewState["DataTextField"];
- if(o!=null)
- return (string)o;
- return String.Empty;
- }
- set
- {
- ViewState["DataTextField"] = value;
- }
- }
- [DefaultValue (""), WebCategory ("Data")]
- [WebSysDescription ("Specifies a formatting rule for the texts that are returned.")]
- public virtual string DataTextFormatString
- {
- get
- {
- object o = ViewState["DataTextFormatString"];
- if(o!=null)
- return (string)o;
- return String.Empty;
- }
- set
- {
- ViewState["DataTextFormatString"] = value;
- }
- }
- [DefaultValue (""), WebCategory ("Data")]
- [WebSysDescription ("The field in the datatable that provides the entry value.")]
- public virtual string DataValueField
- {
- get
- {
- object o = ViewState["DataValueField"];
- if(o!=null)
- return (string)o;
- return String.Empty;
- }
- set
- {
- ViewState["DataValueField"] = value;
- }
- }
- [DefaultValue (null), MergableProperty (false), WebCategory ("Misc")]
- [PersistenceMode (PersistenceMode.InnerDefaultProperty)]
- [WebSysDescription ("A collection of all items contained in this list.")]
- public virtual ListItemCollection Items
- {
- get
- {
- if(items==null)
- {
- items = new ListItemCollection();
- if(IsTrackingViewState)
- {
- items.TrackViewState();
- }
- }
- return items;
- }
- }
- [DefaultValue (0), Bindable (true), WebCategory ("Misc")]
- [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [WebSysDescription ("The index number of the currently selected ListItem.")]
- public virtual int SelectedIndex
- {
- get {
- ListItemCollection items = Items;
- int last = items.Count;
- for (int i = 0; i < last; i++) {
- if (items [i].Selected)
- return i;
- }
- return -1;
- }
- set {
- if (Items.Count == 0)
- {
- cachedSelectedIndex = value;
- return;
- }
- if ((value < -1) || (value >= Items.Count))
- throw new ArgumentOutOfRangeException ();
- ClearSelection ();
- if (value != -1)
- Items [value].Selected = true;
- }
- }
- [DefaultValue (null), WebCategory ("Misc")]
- [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [WebSysDescription ("The currently selected ListItem.")]
- public virtual ListItem SelectedItem
- {
- get
- {
- int idx = SelectedIndex;
- if (idx < 0)
- return null;
- return Items [idx];
- }
- }
- #if NET_1_1
- [DefaultValue (""), Bindable (true), WebCategory ("Misc")]
- [Browsable (false), DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [WebSysDescription ("The value of the currently selected ListItem.")]
- public virtual string SelectedValue {
- get {
- int idx = SelectedIndex;
- if (idx == -1)
- return "";
- return Items [idx].Value;
- }
- set {
- ListItem item = null;
- if (value != null) {
- if (Items.Count > 0) {
- item = Items.FindByValue (value);
- if (item == null)
- throw new ArgumentOutOfRangeException ("value");
- } else {
- cachedSelectedValue = value;
- return;
- }
- }
- ClearSelection ();
- if (item != null)
- item.Selected = true;
- }
- }
- #endif
-
- internal virtual ArrayList SelectedIndices
- {
- get
- {
- ArrayList si = new ArrayList();
- for(int i=0; i < Items.Count; i++)
- {
- if(Items[i].Selected)
- si.Add(i);
- }
- return si;
- }
- }
- internal void Select(ArrayList indices)
- {
- ClearSelection();
- foreach(object intObj in indices)
- {
- int index = (int)intObj;
- if(index >= 0 && index < Items.Count)
- Items[index].Selected = true;
- }
- }
- public virtual void ClearSelection()
- {
- for(int i=0; i < Items.Count; i++)
- {
- Items[i].Selected = false;
- }
- }
- protected override void LoadViewState(object savedState)
- {
- //Order: BaseClass, Items (Collection), Indices
- if(savedState != null && savedState is Triplet)
- {
- Triplet state = (Triplet)savedState;
- base.LoadViewState(state.First);
- Items.LoadViewState(state.Second);
- object indices = state.Third;
- if(indices != null)
- {
- Select((ArrayList)indices);
- }
- }
- }
- #if NET_2_0
- protected override void PerformDataBinding ()
- {
- base.PerformDataBinding ();
- IEnumerable ds = GetResolvedDataSource ();
- #else
- protected override void OnDataBinding(EventArgs e)
- {
- base.OnDataBinding(e);
- IEnumerable ds = DataSourceHelper.GetResolvedDataSource (DataSource, DataMember);
- #endif
- if(ds != null) {
- string dtf = DataTextField;
- string dvf = DataValueField;
- string dtfs = DataTextFormatString;
- if (dtfs.Length == 0)
- dtfs = "{0}";
- Items.Clear();
- bool dontUseProperties = (dtf.Length == 0 && dvf.Length == 0);
- foreach (object current in ds) {
- ListItem li = new ListItem();
- if (dontUseProperties){
- li.Text = String.Format (dtfs, current);
- li.Value = current.ToString ();
- Items.Add (li);
- continue;
- }
- object o;
- if (dtf.Length > 0) {
- o = DataBinder.GetPropertyValue (current, dtf, dtfs);
- li.Text = o.ToString ();
- }
- if (dvf.Length > 0) {
- o = DataBinder.GetPropertyValue (current, dvf, null);
- li.Value = o.ToString ();
- }
- Items.Add(li);
- }
- }
- if (cachedSelectedValue != null) {
- int index = Items.FindByValueInternal (cachedSelectedValue);
- if (index == -1)
- throw new ArgumentOutOfRangeException("value");
- if (cachedSelectedIndex != -1 && cachedSelectedIndex != index)
- throw new ArgumentException(HttpRuntime.FormatResourceString(
- "Attributes_mutually_exclusive", "Selected Index", "Selected Value"));
- SelectedIndex = index;
- cachedSelectedIndex = -1;
- cachedSelectedValue = null;
- return;
- }
- if (cachedSelectedIndex != -1) {
- SelectedIndex = cachedSelectedIndex;
- cachedSelectedIndex = -1;
- }
- }
- protected virtual void OnSelectedIndexChanged(EventArgs e)
- {
- if(Events!=null)
- {
- EventHandler eh = (EventHandler)(Events[SelectedIndexChangedEvent]);
- if(eh!=null)
- eh(this, e);
- }
- }
- protected override void OnPreRender (EventArgs e)
- {
- base.OnPreRender(e);
- }
- protected override object SaveViewState()
- {
- //Order: BaseClass, Items (Collection), Indices
- object vs = base.SaveViewState();
- object itemSvs = Items.SaveViewState();
- object indices = null;
- if (SaveSelectedIndicesViewState)
- indices = SelectedIndices;
- if (vs != null || itemSvs != null || indices != null)
- return new Triplet(vs, itemSvs, indices);
- return null;
- }
- protected override void TrackViewState()
- {
- base.TrackViewState();
- Items.TrackViewState();
- }
- private bool SaveSelectedIndicesViewState {
- get {
- if (Events[SelectedIndexChangedEvent] == null && Enabled && Visible) {
- Type t = GetType();
- // If I am a derivative, let it take of storing the selected indices.
- if (t == typeof(DropDownList) || t == typeof(ListBox) ||
- t == typeof(CheckBoxList) || t == typeof(RadioButtonList))
- return false;
- }
- return true;
- }
- }
- }
- }
|