RadioButtonList.cs :  » 2.6.4-mono-.net-core » System.Web » System » Web » UI » WebControls » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Web 
System.Web » System » Web » UI » WebControls » RadioButtonList.cs
//
// System.Web.UI.WebControls.RadioButtonList.cs
//
// Authors:
//    Jordi Mas i Hernandez (jordi@ximian.com)
//
// (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.
//
//

using System.Collections;
using System.ComponentModel;
using System.Collections.Specialized;
using System.Security.Permissions;

namespace System.Web.UI.WebControls{

  // CAS
  [AspNetHostingPermissionAttribute (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
  [AspNetHostingPermissionAttribute (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
  // attributes
  [ValidationProperty ("SelectedItem")]
#if NET_2_0
  [SupportsEventValidation]
#endif
  public class RadioButtonList : ListControl, IRepeatInfoUser,
    INamingContainer, IPostBackDataHandler {
#if !NET_2_0
    bool need_raise;
#endif
    short tabIndex = 0;

    public RadioButtonList ()
    {

    }

#if ONLY_1_1
    [Bindable (true)]
#endif    
    [DefaultValue (-1)]
    [WebSysDescription ("")]
    [WebCategory ("Layout")]
    public virtual int CellPadding {
      get {
        if (ControlStyleCreated == false)
          return -1; // default value

        return ((TableStyle) ControlStyle).CellPadding;
      }

      set {
        ((TableStyle) ControlStyle).CellPadding = value;
      }
    }

#if ONLY_1_1
    [Bindable (true)]
#endif    
    [DefaultValue (-1)]
    [WebSysDescription ("")]
    [WebCategory ("Layout")]
    public virtual int CellSpacing {
      get {
        if (ControlStyleCreated == false)
          return -1; // default value

        return ((TableStyle) ControlStyle).CellSpacing;
      }

      set {
        ((TableStyle) ControlStyle).CellSpacing = value;
      }
    }

#if ONLY_1_1
    [Bindable (true)]
#endif    
    [DefaultValue (0)]
    [WebSysDescription ("")]
    [WebCategory ("Layout")]
    public virtual int RepeatColumns  {
      get {
        return ViewState.GetInt ("RepeatColumns", 0);
      }

      set {
        if (value < 0)
          throw new ArgumentOutOfRangeException ("The number of columns is set to a negative value.");

        ViewState ["RepeatColumns"] = value;
      }
    }

#if ONLY_1_1
    [Bindable (true)]
#endif    
    [DefaultValue (RepeatDirection.Vertical)]
    [WebSysDescription ("")]
    [WebCategory ("Layout")]
    public virtual RepeatDirection RepeatDirection {
      get {
        return (RepeatDirection) ViewState.GetInt ("RepeatDirection", (int) RepeatDirection.Vertical);
      }

      set {
        if (value != RepeatDirection.Horizontal && value != RepeatDirection.Vertical)
          throw new ArgumentOutOfRangeException ("he display direction of the list is not one of the RepeatDirection values.");

        ViewState ["RepeatDirection"] = value;
      }
    }

#if ONLY_1_1
    [Bindable (true)]
#endif    
    [DefaultValue (RepeatLayout.Table)]
    [WebSysDescription ("")]
    [WebCategory ("Layout")]
    public virtual RepeatLayout RepeatLayout {
      get {
        return (RepeatLayout) ViewState.GetInt ("RepeatLayout", (int) RepeatLayout.Table);
      }

      set {
        if (value != RepeatLayout.Flow && value != RepeatLayout.Table)
          throw new ArgumentOutOfRangeException ("The radio buttons layout is not one of the RepeatLayout values.");

        ViewState ["RepeatLayout"] = value;
      }
    }

#if ONLY_1_1
    [Bindable (true)]
#endif    
    [DefaultValue (TextAlign.Right)]
    [WebSysDescription ("")]
    [WebCategory ("Appearance")]
    public virtual TextAlign TextAlign {
      get {
        return (TextAlign )ViewState.GetInt ("TextAlign", (int) TextAlign.Right);
      }

      set {
        if (value != TextAlign.Left && value != TextAlign.Right)
          throw new ArgumentOutOfRangeException ("The label text alignment associated with the radio buttons is not one of the TextAlign values.");

        ViewState ["TextAlign"] = value;
      }
    }

    // Interface properties

#if NET_2_0
    protected virtual
#endif
    bool HasFooter {
      get { return false; }
    }

#if NET_2_0
    protected virtual
#endif
    bool HasHeader {
      get { return false; }
    }

#if NET_2_0
    protected virtual
#endif
    bool HasSeparators {
      get { return false; }
    }

#if NET_2_0
    protected virtual
#endif
    int RepeatedItemCount {
      get { return Items.Count; }
    }
    
    bool IRepeatInfoUser.HasFooter {
      get { return HasFooter; }
    }

    bool IRepeatInfoUser.HasHeader {
      get { return HasHeader; }
    }

    bool IRepeatInfoUser.HasSeparators {
      get { return HasSeparators; }
    }

    int IRepeatInfoUser.RepeatedItemCount {
      get { return RepeatedItemCount; }
    }

    protected override Style CreateControlStyle ()
    {
      return new TableStyle (ViewState);
    }

#if NET_2_0
    // MSDN: Searches the current naming container for a server control 
    // with the specified ID and path offset. The FindControl method 
    // always returns the RadioButtonList object. 
    protected override Control FindControl (string id, int pathOffset)
    {
      return this;
    }
#endif

#if NET_2_0
    protected virtual
#endif
    Style GetItemStyle (ListItemType itemType, int repeatIndex)
    {
      return null;
    }

#if NET_2_0
    protected virtual
#endif
    void RenderItem (ListItemType itemType, int repeatIndex, RepeatInfo repeatInfo, HtmlTextWriter writer)
    {
      ListItem item = Items [repeatIndex];

      RadioButton radio = new RadioButton ();
      radio.Text = item.Text;
      radio.ID = ClientID + "_"  + repeatIndex;
      radio.TextAlign = TextAlign;
      radio.GroupName = UniqueID;
      radio.Page = Page;
      radio.Checked = item.Selected;
      radio.ValueAttribute = item.Value;
      radio.AutoPostBack = AutoPostBack;
      radio.Enabled = Enabled;
      radio.TabIndex = tabIndex;
#if NET_2_0
      radio.ValidationGroup = ValidationGroup;
      radio.CausesValidation = CausesValidation;
      if (radio.HasAttributes)
        radio.Attributes.Clear ();
      if (item.HasAttributes)
        radio.Attributes.CopyFrom (item.Attributes);
#endif
      radio.RenderControl (writer);
    }
#if NET_2_0
    protected virtual
#endif
    bool LoadPostData (string postDataKey, NameValueCollection postCollection)
    {
#if NET_2_0
      EnsureDataBound ();
#endif
      string val = postCollection [postDataKey];
      ListItemCollection items = Items;
      int end = items.Count;
      int selected = SelectedIndex;
      for (int i = 0; i < end; i++) {
        ListItem item = items [i];
        if (item == null || val != item.Value)
          continue;

        if (i != selected) {
          SelectedIndex = i;
#if NET_2_0
          return true;
#else
          need_raise = true;
#endif
        }
#if !NET_2_0
        return true;
#endif
      }

      return false;
    }

#if NET_2_0
    protected virtual
#endif
    void RaisePostDataChangedEvent ()
    {
#if NET_2_0
      ValidateEvent (UniqueID, String.Empty);
      if (CausesValidation)
        Page.Validate (ValidationGroup);
#endif

#if !NET_2_0
      if (need_raise)
#endif
        OnSelectedIndexChanged (EventArgs.Empty);
    }

    bool IPostBackDataHandler.LoadPostData (string postDataKey, NameValueCollection postCollection)
    {
      return LoadPostData (postDataKey, postCollection);
    }
    
    void IPostBackDataHandler.RaisePostDataChangedEvent ()
    {
      RaisePostDataChangedEvent ();
    }

    Style IRepeatInfoUser.GetItemStyle (ListItemType itemType,  int repeatIndex)
    {
      return GetItemStyle (itemType, repeatIndex);
    }

    void IRepeatInfoUser.RenderItem (ListItemType itemType, int repeatIndex, RepeatInfo repeatInfo, HtmlTextWriter writer)
    {
      RenderItem (itemType, repeatIndex, repeatInfo, writer);
    }

#if NET_2_0
    protected internal
#else    
    protected
#endif    
    override void Render (HtmlTextWriter writer)
    {
#if NET_2_0
      if (Page != null)
        Page.ClientScript.RegisterForEventValidation (UniqueID);

      if (Items.Count == 0)
        return;
#endif
      RepeatInfo repeat = new RepeatInfo ();
      repeat.RepeatColumns = RepeatColumns;
      repeat.RepeatDirection = RepeatDirection;
      repeat.RepeatLayout = RepeatLayout;

      tabIndex = TabIndex;
      TabIndex = 0;

      repeat.RenderRepeater (writer, this, ControlStyle, this);

      TabIndex = tabIndex;
    }
  }

}





www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.