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
|
//------------------------------------------------------------------------------
// <copyright file="Table.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Design;
using System.Globalization;
using System.Web;
using System.Web.Util;
/// <devdoc>
/// <para>Constructs a table and defines its properties.</para>
/// </devdoc>
[
DefaultProperty("Rows"),
ParseChildren(true, "Rows"),
Designer("System.Web.UI.Design.WebControls.TableDesigner, " + AssemblyRef.SystemDesign),
SupportsEventValidation,
]
public class Table : WebControl, IPostBackEventHandler {
private TableRowCollection _rows;
private bool _hasRowSections;
/// <devdoc>
/// <para>
/// Initializes a new instance of the <see cref='System.Web.UI.WebControls.Table'/> class.
/// </para>
/// </devdoc>
public Table() : base(HtmlTextWriterTag.Table) {
}
/// <devdoc>
/// <para>Indicates the URL of the background image to display
/// behind the table. The image will be tiled if it is smaller than the table.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(""),
Editor("System.Web.UI.Design.ImageUrlEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)),
UrlProperty(),
WebSysDescription(SR.Table_BackImageUrl)
]
public virtual string BackImageUrl {
get {
if (ControlStyleCreated == false) {
return String.Empty;
}
return((TableStyle)ControlStyle).BackImageUrl;
}
set {
((TableStyle)ControlStyle).BackImageUrl = value;
}
}
[
DefaultValue(""),
Localizable(true),
WebCategory("Accessibility"),
WebSysDescription(SR.Table_Caption)
]
public virtual string Caption {
get {
string s = (string)ViewState["Caption"];
return (s != null) ? s : String.Empty;
}
set {
ViewState["Caption"] = value;
}
}
[
DefaultValue(TableCaptionAlign.NotSet),
WebCategory("Accessibility"),
WebSysDescription(SR.WebControl_CaptionAlign)
]
public virtual TableCaptionAlign CaptionAlign {
get {
object o = ViewState["CaptionAlign"];
return (o != null) ? (TableCaptionAlign)o : TableCaptionAlign.NotSet;
}
set {
if ((value < TableCaptionAlign.NotSet) ||
(value > TableCaptionAlign.Right)) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["CaptionAlign"] = value;
}
}
/// <devdoc>
/// <para>Gets or sets
/// the distance (in pixels) between the border and
/// the contents of the table cell.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(-1),
WebSysDescription(SR.Table_CellPadding)
]
public virtual int CellPadding {
get {
if (ControlStyleCreated == false) {
return -1;
}
return((TableStyle)ControlStyle).CellPadding;
}
set {
((TableStyle)ControlStyle).CellPadding = value;
}
}
/// <devdoc>
/// <para>Gets or
/// sets
/// the distance (in pixels) between table cells.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(-1),
WebSysDescription(SR.Table_CellSpacing)
]
public virtual int CellSpacing {
get {
if (ControlStyleCreated == false) {
return -1;
}
return((TableStyle)ControlStyle).CellSpacing;
}
set {
((TableStyle)ControlStyle).CellSpacing = value;
}
}
/// <devdoc>
/// <para>Gets or sets the gridlines property of the <see cref='System.Web.UI.WebControls.Table'/>
/// class.</para>
/// </devdoc>
[
WebCategory("Appearance"),
DefaultValue(GridLines.None),
WebSysDescription(SR.Table_GridLines)
]
public virtual GridLines GridLines {
get {
if (ControlStyleCreated == false) {
return GridLines.None;
}
return((TableStyle)ControlStyle).GridLines;
}
set {
((TableStyle)ControlStyle).GridLines = value;
}
}
internal bool HasRowSections {
get {
return _hasRowSections;
}
set {
_hasRowSections = value;
}
}
/// <devdoc>
/// <para>Gets or sets the horizontal alignment of the table within the page.</para>
/// </devdoc>
[
WebCategory("Layout"),
DefaultValue(HorizontalAlign.NotSet),
WebSysDescription(SR.Table_HorizontalAlign)
]
public virtual HorizontalAlign HorizontalAlign {
get {
if (ControlStyleCreated == false) {
return HorizontalAlign.NotSet;
}
return((TableStyle)ControlStyle).HorizontalAlign;
}
set {
((TableStyle)ControlStyle).HorizontalAlign = value;
}
}
public override bool SupportsDisabledAttribute {
get {
return RenderingCompatibility < VersionUtil.Framework40;
}
}
/// <devdoc>
/// <para> Gets the collection of rows within
/// the table.</para>
/// </devdoc>
[
MergableProperty(false),
WebSysDescription(SR.Table_Rows),
PersistenceMode(PersistenceMode.InnerDefaultProperty)
]
public virtual TableRowCollection Rows {
get {
if (_rows == null)
_rows = new TableRowCollection(this);
return _rows;
}
}
/// <internalonly/>
/// <devdoc>
/// <para>A protected method. Adds information about the border
/// color and border width HTML attributes to the list of attributes to render.</para>
/// </devdoc>
protected override void AddAttributesToRender(HtmlTextWriter writer) {
base.AddAttributesToRender(writer);
if (ControlStyleCreated) {
if (EnableLegacyRendering || writer is Html32TextWriter) {
// Must render bordercolor attribute to affect cell borders.
Color borderColor = BorderColor;
if (!borderColor.IsEmpty) {
writer.AddAttribute(HtmlTextWriterAttribute.Bordercolor, ColorTranslator.ToHtml(borderColor));
}
}
}
string borderWidthString = "0";
bool renderBorder = false;
if (ControlStyleCreated) {
// GridLines property controls whether we render the "border" attribute, as "border" controls
// whether gridlines appear in HTML 3.2. Always render a value for the border attribute.
Unit borderWidth = BorderWidth;
GridLines gridLines = GridLines;
if (gridLines != GridLines.None) {
if (borderWidth.IsEmpty || borderWidth.Type != UnitType.Pixel) {
borderWidthString = "1";
renderBorder = true;
}
else {
borderWidthString = ((int)borderWidth.Value).ToString(NumberFormatInfo.InvariantInfo);
}
}
}
if ((RenderingCompatibility < VersionUtil.Framework40) || renderBorder) {
writer.AddAttribute(HtmlTextWriterAttribute.Border, borderWidthString);
}
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
protected override ControlCollection CreateControlCollection() {
return new RowControlCollection(this);
}
/// <internalonly/>
/// <devdoc>
/// <para>A protected method. Creates a table control style.</para>
/// </devdoc>
protected override Style CreateControlStyle() {
return new TableStyle(ViewState);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
protected virtual void RaisePostBackEvent(string argument) {
ValidateEvent(UniqueID, argument);
if (AdapterInternal != null) {
IPostBackEventHandler pbeh = AdapterInternal as IPostBackEventHandler;
if (pbeh != null) {
pbeh.RaisePostBackEvent(argument);
}
}
}
/// <internalonly/>
/// <devdoc>
/// Renders out the caption of the table if needed, before any rows get rendered.
/// </devdoc>
public override void RenderBeginTag(HtmlTextWriter writer) {
base.RenderBeginTag(writer);
string caption = Caption;
if (caption.Length != 0) {
TableCaptionAlign alignment = CaptionAlign;
if (alignment != TableCaptionAlign.NotSet) {
string alignValue = "Right";
switch (alignment) {
case TableCaptionAlign.Top:
alignValue = "Top";
break;
case TableCaptionAlign.Bottom:
alignValue = "Bottom";
break;
case TableCaptionAlign.Left:
alignValue = "Left";
break;
}
writer.AddAttribute(HtmlTextWriterAttribute.Align, alignValue);
}
writer.RenderBeginTag(HtmlTextWriterTag.Caption);
writer.Write(caption);
writer.RenderEndTag();
}
}
/// <devdoc>
/// Render the table rows.
/// </devdoc>
protected internal override void RenderContents(HtmlTextWriter writer) {
TableRowCollection rows = Rows;
int rowCount = rows.Count;
if (rowCount > 0) {
if (HasRowSections) {
TableRowSection currentSection = TableRowSection.TableHeader;
bool openedTag = false;
foreach (TableRow row in rows) {
if (row.TableSection < currentSection) {
// throw if table sections aren't in order
throw new HttpException(SR.GetString(SR.Table_SectionsMustBeInOrder, ID));
}
if (currentSection < row.TableSection || (row.TableSection == TableRowSection.TableHeader && !openedTag)) {
if (openedTag) {
writer.RenderEndTag();
}
currentSection = row.TableSection;
openedTag = true;
switch (currentSection) {
case TableRowSection.TableHeader:
writer.RenderBeginTag(HtmlTextWriterTag.Thead);
break;
case TableRowSection.TableBody:
writer.RenderBeginTag(HtmlTextWriterTag.Tbody);
break;
case TableRowSection.TableFooter:
writer.RenderBeginTag(HtmlTextWriterTag.Tfoot);
break;
}
}
row.RenderControl(writer);
}
writer.RenderEndTag();
}
else {
foreach (TableRow row in rows) {
row.RenderControl(writer);
}
}
}
}
void IPostBackEventHandler.RaisePostBackEvent(string eventArgument) {
RaisePostBackEvent(eventArgument);
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
protected class RowControlCollection : ControlCollection {
internal RowControlCollection (Control owner) : base(owner) {
}
/// <devdoc>
/// <para>Adds the specified <see cref='System.Web.UI.Control'/> object to the collection. The new control is added
/// to the end of the array.</para>
/// </devdoc>
public override void Add(Control child) {
if (child is TableRow)
base.Add(child);
else
throw new ArgumentException(SR.GetString(SR.Cannot_Have_Children_Of_Type, "Table", child.GetType().Name.ToString(CultureInfo.InvariantCulture))); // throw an exception here
}
/// <devdoc>
/// <para>Adds the specified <see cref='System.Web.UI.Control'/> object to the collection. The new control is added
/// to the array at the specified index location.</para>
/// </devdoc>
public override void AddAt(int index, Control child) {
if (child is TableRow)
base.AddAt(index, child);
else
throw new ArgumentException(SR.GetString(SR.Cannot_Have_Children_Of_Type, "Table", child.GetType().Name.ToString(CultureInfo.InvariantCulture))); // throw an exception here
}
} // class RowControlCollection
} // class Table
}
|