| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- //
- // System.Web.UI.WebControls.RadioButton.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.Collections.Specialized;
- using System.Globalization;
- using System.Web;
- using System.Web.UI;
- using System.ComponentModel;
- using System.ComponentModel.Design;
- namespace System.Web.UI.WebControls
- {
- [Designer ("System.Web.UI.Design.WebControls.CheckBoxDesigner, " + Consts.AssemblySystem_Design, typeof (IDesigner))]
- public class RadioButton : CheckBox, IPostBackDataHandler
- {
- public RadioButton () : base ()
- {
- }
- [DefaultValue (""), WebCategory ("Behavior")]
- [WebSysDescription ("The name of the group that this control belongs to.")]
- public virtual string GroupName
- {
- get {
- object o = ViewState ["GroupName"];
- return (o == null) ? String.Empty : (string) o;
- }
- set { ViewState ["GroupName"] = value; }
- }
- protected override void OnPreRender (EventArgs e)
- {
- base.OnPreRender (e);
- if (Page != null && Enabled && !Checked)
- Page.RegisterRequiresPostBack (this);
- if(GroupName.Length == 0)
- GroupName = UniqueID;
- }
- internal override void RenderInputTag (HtmlTextWriter writer, string id)
- {
- writer.AddAttribute (HtmlTextWriterAttribute.Id, id);
- writer.AddAttribute (HtmlTextWriterAttribute.Type, "radio");
- writer.AddAttribute (HtmlTextWriterAttribute.Name, UniqueGroupNamePrivate);
- writer.AddAttribute (HtmlTextWriterAttribute.Value, ValueAttributePrivate);
- if (Checked)
- writer.AddAttribute (HtmlTextWriterAttribute.Checked, "checked");
-
- if (!Enabled)
- writer.AddAttribute (HtmlTextWriterAttribute.Disabled, "disabled");
- if (AutoPostBack){
- writer.AddAttribute (HtmlTextWriterAttribute.Onclick,
- Page.GetPostBackClientEvent (this, ""));
- writer.AddAttribute ("language", "javascript");
- }
- if (AccessKey.Length > 0)
- writer.AddAttribute (HtmlTextWriterAttribute.Accesskey, AccessKey);
- if (TabIndex != 0)
- writer.AddAttribute (HtmlTextWriterAttribute.Tabindex,
- TabIndex.ToString (NumberFormatInfo.InvariantInfo));
- writer.RenderBeginTag (System.Web.UI.HtmlTextWriterTag.Input);
- writer.RenderEndTag ();
- }
- private string UniqueGroupNamePrivate
- {
- get {
- string retVal = GroupName;
- int unique = UniqueID.LastIndexOf (':');
- if (unique >= 0)
- retVal += UniqueID.Substring (unique + 1);
- return retVal;
- }
- }
- private string ValueAttributePrivate
- {
- get {
- string retVal = Attributes ["value"];
- if (retVal != null)
- return retVal;
- if (ID != null)
- return ID;
- return UniqueID;
- }
- }
- bool IPostBackDataHandler.LoadPostData (string postDataKey,
- NameValueCollection postCollection)
- {
- bool _checked = Checked;
- if (postCollection [UniqueGroupNamePrivate] == ValueAttributePrivate){
- if (_checked)
- return false;
- Checked = true;
- return true;
- }
- if (_checked)
- Checked = false;
- return true;
- }
- void IPostBackDataHandler.RaisePostDataChangedEvent ()
- {
- OnCheckedChanged (EventArgs.Empty);
- }
- }
- }
|