1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
|
//------------------------------------------------------------------------------
// <copyright file="RadioButtonList.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Globalization;
using System.Web;
using System.Web.UI;
using System.Web.Util;
/// <devdoc>
/// <para>Generates a single-selection radio button group and
/// defines its properties.</para>
/// </devdoc>
[
ValidationProperty("SelectedItem"),
SupportsEventValidation,
]
public class RadioButtonList : ListControl, IRepeatInfoUser, INamingContainer, IPostBackDataHandler {
RadioButton _controlToRepeat;
private bool _cachedIsEnabled;
private bool _cachedRegisterEnabled;
private int _offset;
public RadioButtonList() {
_offset = 0;
}
/// <devdoc>
/// CellPadding property.
/// The padding between each item.
/// </devdoc>
[
WebCategory("Layout"),
DefaultValue(-1),
WebSysDescription(SR.RadioButtonList_CellPadding)
]
public virtual int CellPadding {
get {
if (ControlStyleCreated == false) {
return -1;
}
return ((TableStyle)ControlStyle).CellPadding;
}
set {
((TableStyle)ControlStyle).CellPadding = value;
}
}
/// <devdoc>
/// CellSpacing property.
/// The spacing between each item.
/// </devdoc>
[
WebCategory("Layout"),
DefaultValue(-1),
WebSysDescription(SR.RadioButtonList_CellSpacing)
]
public virtual int CellSpacing {
get {
if (ControlStyleCreated == false) {
return -1;
}
return ((TableStyle)ControlStyle).CellSpacing;
}
set {
((TableStyle)ControlStyle).CellSpacing = value;
}
}
private RadioButton ControlToRepeat {
get {
if (_controlToRepeat != null)
return _controlToRepeat;
_controlToRepeat = new RadioButton();
_controlToRepeat.EnableViewState = false;
Controls.Add(_controlToRepeat);
// A note is that we don't need to set the GroupName on the radio
// button as the radio button would simply use its naming container
// (which would be this control) as its name attribute for postback.
// Apply properties that are the same for each radio button
_controlToRepeat.AutoPostBack = AutoPostBack;
_controlToRepeat.CausesValidation = CausesValidation;
_controlToRepeat.ValidationGroup = ValidationGroup;
return _controlToRepeat;
}
}
/// <summary>
/// <para>Indicates whether the control will be rendered when the data source has no items.</para>
/// </summary>
[DefaultValue(false)]
[Themeable(true)]
[WebCategory("Behavior")]
[WebSysDescription(SR.ListControl_RenderWhenDataEmpty)]
public virtual bool RenderWhenDataEmpty {
get {
object o = ViewState["RenderWhenDataEmpty"];
return ((o == null) ? false : (bool)o);
}
set {
ViewState["RenderWhenDataEmpty"] = value;
}
}
/// <devdoc>
/// Indicates the column count of radio buttons
/// within the group.
/// </devdoc>
[
WebCategory("Layout"),
DefaultValue(0),
WebSysDescription(SR.RadioButtonList_RepeatColumns)
]
public virtual int RepeatColumns {
get {
object o = ViewState["RepeatColumns"];
return((o == null) ? 0 : (int)o);
}
set {
if (value < 0) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["RepeatColumns"] = value;
}
}
/// <devdoc>
/// <para>Gets or sets the direction of flow of
/// the radio buttons within the group.</para>
/// </devdoc>
[
WebCategory("Layout"),
DefaultValue(RepeatDirection.Vertical),
WebSysDescription(SR.Item_RepeatDirection)
]
public virtual RepeatDirection RepeatDirection {
get {
object o = ViewState["RepeatDirection"];
return((o == null) ? RepeatDirection.Vertical : (RepeatDirection)o);
}
set {
if (value < RepeatDirection.Horizontal || value > RepeatDirection.Vertical) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["RepeatDirection"] = value;
}
}
/// <devdoc>
/// <para>Indicates the layout of radio buttons within the
/// group.</para>
/// </devdoc>
[
WebCategory("Layout"),
DefaultValue(RepeatLayout.Table),
WebSysDescription(SR.WebControl_RepeatLayout)
]
public virtual RepeatLayout RepeatLayout {
get {
object o = ViewState["RepeatLayout"];
return((o == null) ? RepeatLayout.Table : (RepeatLayout)o);
}
set {
EnumerationRangeValidationUtil.ValidateRepeatLayout(value);
ViewState["RepeatLayout"] = value;
}
}
/// <devdoc>
/// <para>
/// Indicates the label text alignment for the radio buttons within the group.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(TextAlign.Right),
WebSysDescription(SR.WebControl_TextAlign)
]
public virtual TextAlign TextAlign {
get {
object align = ViewState["TextAlign"];
return((align == null) ? TextAlign.Right : (TextAlign)align);
}
set {
if (value < TextAlign.Left || value > TextAlign.Right) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["TextAlign"] = value;
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
protected override Style CreateControlStyle() {
return new TableStyle(ViewState);
}
/// <internalonly/>
/// <devdoc>
/// <para>Catches auto postback from a <see cref='System.Web.UI.WebControls.RadioButton'/> in the list.</para>
/// </devdoc>
protected override Control FindControl(string id, int pathOffset) {
return this;
}
/// <internalonly/>
/// <devdoc>
/// <para>Loads the posted content of the list control if it is different from the last
/// posting.</para>
/// </devdoc>
bool IPostBackDataHandler.LoadPostData(String postDataKey, NameValueCollection postCollection) {
return LoadPostData(postDataKey, postCollection);
}
/// <internalonly/>
/// <devdoc>
/// <para>Loads the posted content of the list control if it is different from the last
/// posting.</para>
/// </devdoc>
protected virtual bool LoadPostData(String postDataKey, NameValueCollection postCollection) {
// When a RadioButtonList is disabled, then there is no postback data for it.
// Since RadioButtonList doesn't call RegisterRequiresPostBack, this method will
// never be called, so we don't need to worry about ignoring empty postback data.
string post = postCollection[postDataKey];
int currentSelectedIndex = SelectedIndex;
EnsureDataBoundInLoadPostData();
int n = Items.Count;
for (int i=0; i < n; i++) {
if (post == Items[i].Value && Items[i].Enabled) {
ValidateEvent(postDataKey, post);
if (i != currentSelectedIndex) {
SetPostDataSelection(i);
return true;
}
return false;
}
}
return false;
}
/// <internalonly/>
/// <devdoc>
/// <para>Invokes the OnSelectedIndexChanged
/// method whenever posted data for the <see cref='System.Web.UI.WebControls.RadioButtonList'/>
/// control has changed.</para>
/// </devdoc>
void IPostBackDataHandler.RaisePostDataChangedEvent() {
RaisePostDataChangedEvent();
}
/// <internalonly/>
/// <devdoc>
/// <para>Invokes the OnSelectedIndexChanged
/// method whenever posted data for the <see cref='System.Web.UI.WebControls.RadioButtonList'/>
/// control has changed.</para>
/// </devdoc>
protected virtual void RaisePostDataChangedEvent() {
if (AutoPostBack && Page != null && !Page.IsPostBackEventControlRegistered) {
// VSWhidbey 204824
Page.AutoPostBackControl = this;
if (CausesValidation) {
Page.Validate(ValidationGroup);
}
}
OnSelectedIndexChanged(EventArgs.Empty);
}
protected internal override void OnInit(EventArgs e) {
base.OnInit(e);
if (!DesignMode && !String.IsNullOrEmpty(ItemType)) {
DataBoundControlHelper.EnableDynamicData(this, ItemType);
}
}
protected internal override void Render(HtmlTextWriter writer) {
// Rendering an empty table is not valid xhtml or html 4, so throw
if (RepeatLayout == RepeatLayout.Table && RenderWhenDataEmpty) {
throw new InvalidOperationException(SR.GetString(SR.ListControl_RenderWhenDataEmptyNotSupportedWithTableLayout, ID));
}
// Don't render anything if the control is empty (unless the developer opts in by setting RenderWhenDataEmpty).
// empty table is not xhtml compliant.
if (Items.Count == 0 && !EnableLegacyRendering && !RenderWhenDataEmpty) {
return;
}
RepeatInfo repeatInfo = new RepeatInfo();
Style style = (ControlStyleCreated ? ControlStyle : null);
short tabIndex = TabIndex;
bool undirtyTabIndex = false;
// TabIndex here is special... it needs to be applied to the individual
// radiobuttons and not the outer control itself
// cache away the TabIndex property state
ControlToRepeat.TabIndex = tabIndex;
if (tabIndex != 0) {
if (ViewState.IsItemDirty("TabIndex") == false) {
undirtyTabIndex = true;
}
TabIndex = 0;
}
repeatInfo.RepeatColumns = RepeatColumns;
repeatInfo.RepeatDirection = RepeatDirection;
// If the device does not support tables, use the flow layout to render
if (!DesignMode && !Context.Request.Browser.Tables) {
repeatInfo.RepeatLayout = RepeatLayout.Flow;
}
else {
repeatInfo.RepeatLayout = RepeatLayout;
}
if (repeatInfo.RepeatLayout == RepeatLayout.Flow) {
repeatInfo.EnableLegacyRendering = EnableLegacyRendering;
}
repeatInfo.RenderRepeater(writer, (IRepeatInfoUser)this, style, this);
if (Page != null) {
Page.ClientScript.RegisterForEventValidation(UniqueID);
}
// restore the state of the TabIndex property
if (tabIndex != 0) {
TabIndex = tabIndex;
}
if (undirtyTabIndex) {
ViewState.SetItemDirty("TabIndex", false);
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
bool IRepeatInfoUser.HasFooter {
get {
return HasFooter;
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
protected virtual bool HasFooter {
get {
return false;
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
bool IRepeatInfoUser.HasHeader {
get {
return HasHeader;
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
protected virtual bool HasHeader {
get {
return false;
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
bool IRepeatInfoUser.HasSeparators {
get {
return HasSeparators;
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
protected virtual bool HasSeparators {
get {
return false;
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
int IRepeatInfoUser.RepeatedItemCount {
get {
return RepeatedItemCount;
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
protected virtual int RepeatedItemCount {
get {
return (Items != null) ? Items.Count : 0;
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
Style IRepeatInfoUser.GetItemStyle(ListItemType itemType, int repeatIndex) {
return GetItemStyle(itemType, repeatIndex);
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
protected virtual Style GetItemStyle(ListItemType itemType, int repeatIndex) {
return null;
}
/// <internalonly/>
/// <devdoc>
/// Called by the RepeatInfo helper to render each item
/// </devdoc>
void IRepeatInfoUser.RenderItem(ListItemType itemType, int repeatIndex, RepeatInfo repeatInfo, HtmlTextWriter writer) {
RenderItem(itemType, repeatIndex, repeatInfo, writer);
}
/// <internalonly/>
/// <devdoc>
/// Called by the RepeatInfo helper to render each item
/// </devdoc>
protected virtual void RenderItem(ListItemType itemType, int repeatIndex, RepeatInfo repeatInfo, HtmlTextWriter writer) {
if (repeatIndex == 0) {
_cachedIsEnabled = IsEnabled;
_cachedRegisterEnabled = (Page != null) && (SaveSelectedIndicesViewState == false);
}
RadioButton controlToRepeat = ControlToRepeat;
// Apply properties of the list items
int repeatIndexOffset = repeatIndex + _offset;
ListItem item = Items[repeatIndexOffset];
// VSWhidbey 153920 Render expando attributes.
controlToRepeat.Attributes.Clear();
if (item.HasAttributes) {
foreach (string key in item.Attributes.Keys) {
controlToRepeat.Attributes[key] = item.Attributes[key];
}
}
// Dev10 684108: reset the CssClass for each item.
if (!string.IsNullOrEmpty(controlToRepeat.CssClass)) {
controlToRepeat.CssClass = "";
}
SetControlToRepeatID(this, controlToRepeat, repeatIndexOffset);
controlToRepeat.Text = item.Text;
controlToRepeat.Attributes["value"] = item.Value;
controlToRepeat.Checked = item.Selected;
controlToRepeat.Enabled = _cachedIsEnabled && item.Enabled;
controlToRepeat.TextAlign = TextAlign;
controlToRepeat.RenderControl(writer);
if (controlToRepeat.Enabled && _cachedRegisterEnabled && Page != null) {
// Store a client-side array of enabled control, so we can re-enable them on
// postback (in case they are disabled client-side)
// Postback is needed when SelectedIndices is not saved in view state
Page.RegisterEnabledControl(controlToRepeat);
}
}
}
}
|