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
|
//
// System.Web.UI.WebControls.DataPager
//
// Authors:
// Marek Habersack (mhabersack@novell.com)
//
// (C) 2007-2010 Novell, Inc
//
//
// 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.ComponentModel;
using System.Security.Permissions;
using System.Web;
using System.Web.UI;
namespace System.Web.UI.WebControls
{
// [ToolboxBitmap (typeof (System.Web.UI.WebControls.DataPager), "DataPager.ico")]
[ToolboxItemFilter ("System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", ToolboxItemFilterType.Require)]
[SupportsEventValidation]
[Themeable (true)]
[ParseChildren (true)]
[Designer ("System.Web.UI.Design.WebControls.DataPagerDesigner, System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
[PersistChildren (false)]
public class DataPager : Control, IAttributeAccessor, INamingContainer, ICompositeControlDesignerAccessor
{
const int NO_PAGEABLE_ITEM_CONTAINER = 0;
const int NO_DATABOUND_CONTROL = 1;
const int NO_PAGED_CONTAINER_ID = 2;
const int CONTROL_NOT_PAGEABLE = 3;
const int NO_NAMING_CONTAINER = 4;
const int CSTATE_BASE_STATE = 0;
const int CSTATE_TOTAL_ROW_COUNT = 1;
const int CSTATE_MAXIMUM_ROWS = 2;
const int CSTATE_START_ROW_INDEX = 3;
const int CSTATE_COUNT = 4;
string[] _exceptionMessages = {
"No IPageableItemContainer was found. Verify that either the DataPager is inside an IPageableItemContainer or PagedControlID is set to the control ID of an IPageableItemContainer",
"There is no data-bound control associated with the DataPager control.",
"Control with id '{0}' cannot be found in the page",
"Control '{0}' is not pageable",
"DataPager has no naming container"
};
IPageableItemContainer _pageableContainer;
DataPagerFieldCollection _fields;
AttributeCollection _attributes;
int _totalRowCount;
int _startRowIndex;
int _maximumRows = 10;
bool _initDone;
bool _needNewContainerSetup = true;
bool _needSetPageProperties = true;
bool _createPagerFieldsRunning;
public DataPager()
{
_fields = new DataPagerFieldCollection (this);
}
protected virtual void AddAttributesToRender (HtmlTextWriter writer)
{
if (ID != null)
writer.AddAttribute (HtmlTextWriterAttribute.Id, ClientID);
if (_attributes != null && _attributes.Count > 0) {
foreach (string attr in _attributes.Keys)
writer.AddAttribute (attr, _attributes [attr]);
}
}
protected virtual void ConnectToEvents (IPageableItemContainer container)
{
if (container == null)
throw new ArgumentNullException ("container");
container.TotalRowCountAvailable += new EventHandler <PageEventArgs> (OnTotalRowCountAvailable);
}
protected virtual void CreatePagerFields ()
{
// In theory (on multi-core or SMP machines), OnTotalRowCountAvailable may
// be called asynchronously to this method (since it is a delegate reacting
// to event in the container), so we want to protect ourselves from data
// corruption here. Lock would be an overkill, since we really want to
// create the list only once anyway.
_createPagerFieldsRunning = true;
ControlCollection controls = Controls;
controls.Clear ();
DataPagerFieldItem control;
foreach (DataPagerField dpf in _fields) {
control = new DataPagerFieldItem (dpf, this);
controls.Add (control);
if (dpf.Visible) {
dpf.CreateDataPagers (control, _startRowIndex, _maximumRows, _totalRowCount, _fields.IndexOf (dpf));
control.DataBind ();
}
}
_createPagerFieldsRunning = false;
}
public override void DataBind ()
{
OnDataBinding (EventArgs.Empty);
EnsureChildControls ();
DataBindChildren ();
}
protected virtual IPageableItemContainer FindPageableItemContainer ()
{
string pagedControlID = PagedControlID;
IPageableItemContainer ret = null;
Page page = Page;
Control container;
if (page != null && !String.IsNullOrEmpty (pagedControlID)) {
Control ctl = null;
container = NamingContainer;
while (container != null) {
ctl = container.FindControl (pagedControlID);
if (ctl != null)
break;
if (container == page)
break;
container = container.NamingContainer;
}
if (container == null)
throw new InvalidOperationException (_exceptionMessages [NO_NAMING_CONTAINER]);
if (ctl == null)
throw new InvalidOperationException (String.Format (_exceptionMessages [NO_PAGED_CONTAINER_ID], pagedControlID));
ret = ctl as IPageableItemContainer;
if (ret == null)
throw new InvalidOperationException (String.Format (_exceptionMessages [CONTROL_NOT_PAGEABLE], pagedControlID));
return ret;
}
// No ID set, try to find a container that's pageable
container = NamingContainer;
while (container != page) {
if (container == null)
throw new InvalidOperationException (_exceptionMessages [NO_NAMING_CONTAINER]);
ret = container as IPageableItemContainer;
if (ret != null)
return ret;
container = container.NamingContainer;
}
return ret;
}
protected internal override void LoadControlState (object savedState)
{
object[] state = savedState as object[];
object tmp;
if (state != null && state.Length == CSTATE_COUNT) {
base.LoadControlState (state [CSTATE_BASE_STATE]);
if ((tmp = state [CSTATE_TOTAL_ROW_COUNT]) != null)
_totalRowCount = (int) tmp;
if ((tmp = state [CSTATE_MAXIMUM_ROWS]) != null)
_maximumRows = (int) tmp;
if ((tmp = state [CSTATE_START_ROW_INDEX]) != null)
_startRowIndex = (int) tmp;
}
if (_pageableContainer == null) {
_pageableContainer = FindPageableItemContainer ();
if (_pageableContainer == null)
throw new InvalidOperationException (_exceptionMessages [NO_DATABOUND_CONTROL]);
ConnectToEvents (_pageableContainer);
}
SetUpForNewContainer (false, false);
}
protected override void LoadViewState (object savedState)
{
var state = savedState as object[];
if (state == null || state.Length != 2)
return;
base.LoadViewState (state [0]);
object myState = state [1];
if (myState != null)
((IStateManager) Fields).LoadViewState (myState);
}
protected override bool OnBubbleEvent (object source, EventArgs e)
{
DataPagerFieldCommandEventArgs args = e as DataPagerFieldCommandEventArgs;
if (args != null) {
DataPagerFieldItem item = args.Item;
DataPagerField field = item != null ? item.PagerField : null;
if (field != null) {
field.HandleEvent (args);
return true;
}
}
return false;
}
void SetUpForNewContainer (bool dataBind, bool needSetPageProperties)
{
if (_needNewContainerSetup) {
ConnectToEvents (_pageableContainer);
_needNewContainerSetup = false;
}
if (_needSetPageProperties) {
_pageableContainer.SetPageProperties (_startRowIndex, _maximumRows, dataBind);
_needSetPageProperties = needSetPageProperties;
}
}
protected internal override void OnInit (EventArgs e)
{
base.OnInit (e);
Page page = Page;
if (page != null)
page.RegisterRequiresControlState (this);
// It might return null here - there is no guarantee all the controls on the
// page are already initialized by the time this method is loaded. Do not
// throw for that reason.
_pageableContainer = FindPageableItemContainer ();
if (_pageableContainer != null)
// Do not re-bind the data here - not all the controls might be
// initialized (that includes the container may be bound to)
SetUpForNewContainer (false, true);
_initDone = true;
}
protected internal override void OnLoad (EventArgs e)
{
if (_pageableContainer == null)
_pageableContainer = FindPageableItemContainer ();
if (_pageableContainer == null)
throw new InvalidOperationException (_exceptionMessages [NO_PAGEABLE_ITEM_CONTAINER]);
SetUpForNewContainer (false, false);
base.OnLoad (e);
}
protected virtual void OnTotalRowCountAvailable (object sender, PageEventArgs e)
{
_totalRowCount = e.TotalRowCount;
_maximumRows = e.MaximumRows;
_startRowIndex = e.StartRowIndex;
// Sanity checks: if the total row count is less than the current start row
// index, we must adjust and rebind the associated container control
if (_totalRowCount > 0 && (_totalRowCount <= _startRowIndex)) {
// Adjust the container's start row index to the new maximum rows
// count, but do not touch our index - we aren't a "view", so we
// don't want/need to change the start index.
int tmp = _startRowIndex - _maximumRows;
if (tmp < 0 || tmp >= _totalRowCount)
tmp = 0;
// Trigger the databinding, which will call us again, with adjusted
// data, so that we can recreate the pager fields.
_pageableContainer.SetPageProperties (tmp, _maximumRows, true);
} else if (!_createPagerFieldsRunning)
// No adjustments necessary, re-create the pager fields
CreatePagerFields ();
}
protected virtual void RecreateChildControls ()
{
// This is used only by VS designer
throw new NotImplementedException ();
}
protected internal override void Render (HtmlTextWriter writer)
{
RenderBeginTag (writer);
RenderContents (writer);
writer.RenderEndTag ();
}
public virtual void RenderBeginTag (HtmlTextWriter writer)
{
AddAttributesToRender (writer);
writer.RenderBeginTag (TagKey);
}
protected virtual void RenderContents (HtmlTextWriter writer)
{
// Nothing special to render, just child controls
base.Render (writer);
}
protected internal override object SaveControlState ()
{
object[] ret = new object [CSTATE_COUNT];
ret [CSTATE_BASE_STATE] = base.SaveControlState ();
ret [CSTATE_TOTAL_ROW_COUNT] = _totalRowCount <= 0 ? 0 : _totalRowCount;
ret [CSTATE_MAXIMUM_ROWS] = _maximumRows <= 0 ? 0 : _maximumRows;
ret [CSTATE_START_ROW_INDEX] = _startRowIndex <= 0 ? 0 : _startRowIndex;
return ret;
}
protected override object SaveViewState ()
{
var ret = new object [2];
ret [0] = base.SaveViewState ();
ret [1] = _fields != null ? ((IStateManager) _fields).SaveViewState () : null;
return ret;
}
public virtual void SetPageProperties (int startRowIndex, int maximumRows, bool databind)
{
if (_pageableContainer == null)
throw new InvalidOperationException (_exceptionMessages [NO_DATABOUND_CONTROL]);
_startRowIndex = startRowIndex;
_maximumRows = maximumRows;
_needSetPageProperties = false;
_pageableContainer.SetPageProperties (startRowIndex, maximumRows, databind);
}
protected override void TrackViewState ()
{
base.TrackViewState ();
if (_fields != null)
((IStateManager) _fields).TrackViewState ();
}
[Browsable (false)]
[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
public AttributeCollection Attributes {
get {
if (_attributes == null)
_attributes = new AttributeCollection (new StateBag ());
return _attributes;
}
}
public override ControlCollection Controls {
get {
EnsureChildControls ();
return base.Controls;
}
}
[Category ("Default")]
[PersistenceMode (PersistenceMode.InnerProperty)]
[DefaultValue ("")]
[Editor ("System.Web.UI.Design.WebControls.DataPagerFieldTypeEditor, System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", typeof (System.Drawing.Design.UITypeEditor))]
[MergableProperty (false)]
public virtual DataPagerFieldCollection Fields {
get { return _fields; }
}
[Browsable (false)]
[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
public int MaximumRows {
get { return _maximumRows; }
}
[WebCategory ("Paging")]
[IDReferenceProperty (typeof (System.Web.UI.WebControls.IPageableItemContainer))]
[DefaultValue ("")]
[Themeable (false)]
public virtual string PagedControlID {
get {
string ret = ViewState ["PagedControlID"] as string;
if (ret == null)
return String.Empty;
return ret;
}
set { ViewState ["PagedControlID"] = value; }
}
[DefaultValue (10)]
[WebCategory ("Paging")]
public int PageSize {
get { return _maximumRows; }
set {
if (value < 1)
throw new ArgumentOutOfRangeException ("value");
if (value == _maximumRows)
return;
_maximumRows = value;
if (_initDone) {
// We have a source and the page size has changed, update
// the container
CreatePagerFields ();
// Environment has changed, let the container know that it
// needs to rebind.
SetPageProperties (_startRowIndex, _maximumRows, true);
}
}
}
[DefaultValue ("")]
[WebCategory ("Paging")]
public string QueryStringField {
get {
string ret = ViewState ["QueryStringField"] as string;
if (ret == null)
return String.Empty;
return ret;
}
set { ViewState ["QueryStringField"] = value; }
}
[Browsable (false)]
[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
public int StartRowIndex {
get { return _startRowIndex; }
}
[Browsable (false)]
[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
protected virtual HtmlTextWriterTag TagKey {
get { return HtmlTextWriterTag.Span; }
}
[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
[Browsable (false)]
public int TotalRowCount {
get { return _totalRowCount; }
}
string IAttributeAccessor.GetAttribute (string key)
{
return Attributes [key];
}
void IAttributeAccessor.SetAttribute (string key, string value)
{
Attributes [key] = value;
}
void ICompositeControlDesignerAccessor.RecreateChildControls ()
{
RecreateChildControls ();
}
}
}
|