| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- //
- // System.Web.UI.WebControls.CheckBoxList.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.Specialized;
- using System.ComponentModel;
- using System.Globalization;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.WebControls
- {
- public class CheckBoxList: ListControl, IRepeatInfoUser, INamingContainer, IPostBackDataHandler
- {
- CheckBox checkBoxRepeater;
- bool isChangeNotified;
- public CheckBoxList()
- {
- checkBoxRepeater = new CheckBox();
- checkBoxRepeater.ID = "0";
- checkBoxRepeater.EnableViewState = false;
- Controls.Add (checkBoxRepeater);
- isChangeNotified = false;
- }
- [DefaultValue (-1), Bindable (true), WebCategory ("Layout")]
- [WebSysDescription ("The border left within a CheckBox.")]
- public virtual int CellPadding
- {
- get
- {
- return (ControlStyleCreated ? ((TableStyle)ControlStyle).CellPadding : -1);
- }
- set
- {
- ((TableStyle)ControlStyle).CellPadding = value;
- }
- }
- [DefaultValue (-1), Bindable (true), WebCategory ("Layout")]
- [WebSysDescription ("The border left between CheckBoxes.")]
- public virtual int CellSpacing
- {
- get
- {
- return (ControlStyleCreated ? ((TableStyle)ControlStyle).CellSpacing : -1);
- }
- set
- {
- ((TableStyle)ControlStyle).CellSpacing = value;
- }
- }
- [DefaultValue (0), Bindable (true), WebCategory ("Layout")]
- [WebSysDescription ("The number of columns that should be used to display the CheckBoxes.")]
- public virtual int RepeatColumns
- {
- get
- {
- object o = ViewState["RepeatColumns"];
- if(o!=null)
- return (int)o;
- return 0;
- }
- set
- {
- if(value < 0)
- throw new ArgumentOutOfRangeException();
- ViewState["RepeatColumns"] = value;
- }
- }
- [DefaultValue (typeof (RepeatDirection), "Vertical"), Bindable (true), WebCategory ("Layout")]
- [WebSysDescription ("The direction that is followed when doing the layout.")]
- public virtual RepeatDirection RepeatDirection
- {
- get
- {
- object o = ViewState["RepeatDirection"];
- if(o!=null)
- return (RepeatDirection)o;
- return RepeatDirection.Vertical;
- }
- set
- {
- if(!System.Enum.IsDefined(typeof(RepeatDirection),value))
- throw new ArgumentException();
- ViewState["RepeatDirection"] = value;
- }
- }
- [DefaultValue (typeof (RepeatLayout), "Table"), Bindable (true), WebCategory ("Layout")]
- [WebSysDescription ("The method used to create the layout.")]
- public virtual RepeatLayout RepeatLayout
- {
- get
- {
- object o = ViewState["RepeatLayout"];
- if(o!=null)
- return (RepeatLayout)o;
- return RepeatLayout.Table;
- }
- set
- {
- if(!System.Enum.IsDefined(typeof(RepeatLayout), value))
- throw new ArgumentException();
- ViewState["RepeatLayout"] = value;
- }
- }
- [DefaultValue (typeof (TextAlign), "Right"), Bindable (true), WebCategory ("Appearance")]
- [WebSysDescription ("The alignment of the CheckBox text.")]
- public virtual TextAlign TextAlign
- {
- get
- {
- object o = ViewState["TextAlign"];
- if(o!=null)
- return (TextAlign)o;
- return TextAlign.Right;
- }
- set
- {
- if(!Enum.IsDefined(typeof(TextAlign), value))
- throw new ArgumentException();
- ViewState["TextAlign"] = value;
- }
- }
- protected override Style CreateControlStyle()
- {
- return new TableStyle(ViewState);
- }
- protected override Control FindControl(string id, int pathOffset)
- {
- return this;
- }
- protected override void OnPreRender(EventArgs e)
- {
- checkBoxRepeater.AutoPostBack = AutoPostBack;
- if(Page!=null)
- {
- for(int i=0; i < Items.Count; i++)
- {
- if(Items[i].Selected)
- {
- checkBoxRepeater.ID = i.ToString(NumberFormatInfo.InvariantInfo);
- Page.RegisterRequiresPostBack(checkBoxRepeater);
- }
- }
- }
- }
- protected override void Render(HtmlTextWriter writer)
- {
- RepeatInfo ri = new RepeatInfo();
- checkBoxRepeater.TabIndex = TabIndex;
- bool dirtyFlag = false;
- short tTabIndex = TabIndex;
- Style s = (ControlStyleCreated ? ControlStyle : null);
- if(TabIndex != 0)
- {
- if(!ViewState.IsItemDirty("TabIndex"))
- dirtyFlag = true;
- TabIndex = 0;
- }
- ri.RepeatColumns = RepeatColumns;
- ri.RepeatLayout = RepeatLayout;
- ri.RepeatDirection = RepeatDirection;
- ri.RenderRepeater(writer, this, s, this);
- if(tTabIndex != 0)
- {
- TabIndex = tTabIndex;
- }
- if(dirtyFlag)
- {
- ViewState.SetItemDirty("TabIndex", false);
- }
- }
- bool IPostBackDataHandler.LoadPostData(string postDataKey, NameValueCollection postCollection)
- {
- if (!Enabled)
- return false;
- int index = Int32.Parse(postDataKey.Substring(UniqueID.Length + 1));
- if(index >= 0 && index < Items.Count)
- {
- string v = postCollection [postDataKey];
- bool exists = (v != null);
- if(Items[index].Selected != exists)
- {
- Items[index].Selected = exists;
- if(!isChangeNotified)
- {
- isChangeNotified = true;
- return true;
- }
- }
- }
- return false;
- }
- void IPostBackDataHandler.RaisePostDataChangedEvent()
- {
- OnSelectedIndexChanged(EventArgs.Empty);
- }
- bool IRepeatInfoUser.HasFooter
- {
- get
- {
- return false;
- }
- }
- bool IRepeatInfoUser.HasHeader
- {
- get
- {
- return false;
- }
- }
- bool IRepeatInfoUser.HasSeparators
- {
- get
- {
- return false;
- }
- }
- int IRepeatInfoUser.RepeatedItemCount
- {
- get
- {
- return Items.Count;
- }
- }
- Style IRepeatInfoUser.GetItemStyle(ListItemType itemType, int repeatIndex)
- {
- return null;
- }
- void IRepeatInfoUser.RenderItem(ListItemType itemType, int repeatIndex, RepeatInfo repeatInfo, HtmlTextWriter writer)
- {
- checkBoxRepeater.ID = repeatIndex.ToString(NumberFormatInfo.InvariantInfo);
- checkBoxRepeater.Text = Items[repeatIndex].Text;
- checkBoxRepeater.TextAlign = TextAlign;
- checkBoxRepeater.Checked = Items[repeatIndex].Selected;
- checkBoxRepeater.Enabled = Enabled;
- checkBoxRepeater.RenderControl(writer);
- }
- }
- }
|