Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / DynamicData / DynamicData / QueryableFilterRepeater.cs / 1305376 / QueryableFilterRepeater.cs
using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Linq; using System.Web.Resources; using System.Web.UI; #if ORYX_VNEXT using Microsoft.Web.Data.UI.WebControls.Expressions; using Microsoft.Web.Data.UI.WebControls; #else using System.Web.UI.WebControls.Expressions; using System.Web.UI.WebControls; #endif namespace System.Web.DynamicData { ////// A templated control that automatically generates a collection of filters for a table associated with a given data source. /// It is designed to work with the QueryExtender architecture and it will not render anything unless it's referenced by a /// DynamicFilterExpression inside of a QueryExtender. /// [ParseChildren(true)] [PersistChildren(false)] public class QueryableFilterRepeater : Control, IFilterExpressionProvider { private HttpContextBase _context; private IQueryableDataSource _dataSource; private List_filters = new List (); private bool _initialized = false; // for unit testing private new HttpContextBase Context { get { return _context ?? new HttpContextWrapper(HttpContext.Current); } } /// /// The ID of a DynamicFilter control inside of the template that will be used configured to be a filter for a particular column. /// The default value is "DynamicFilter" /// [ Category("Behavior"), DefaultValue("DynamicFilter"), Themeable(false), IDReferenceProperty(typeof(QueryableFilterUserControl)), ResourceDescription("DynamicFilterRepeater_DynamicFilterContainerId") ] public string DynamicFilterContainerId { get { string id = ViewState["__FilterContainerId"] as string; return String.IsNullOrEmpty(id) ? "DynamicFilter" : id; } set { ViewState["__FilterContainerId"] = value; } } ////// The template in which the layout of each filter can be specified. Just like ItemTempalte in Repeater. /// [Browsable(false)] [DefaultValue(null)] [PersistenceMode(PersistenceMode.InnerProperty)] [TemplateContainer(typeof(INamingContainer))] public virtual ITemplate ItemTemplate { get; set; } public QueryableFilterRepeater() { } // for unit testing internal QueryableFilterRepeater(HttpContextBase context) : this() { _context = context; } [SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers", MessageId = "0#")] protected override void OnPreRender(EventArgs e) { if (_filters.Count == 0) { this.Visible = false; } base.OnPreRender(e); } #region IFilterExpressionProvider Members void IFilterExpressionProvider.Initialize(IQueryableDataSource dataSource) { if (dataSource == null) { throw new ArgumentNullException("dataSource"); } if (ItemTemplate == null) { return; } _dataSource = dataSource; Page.InitComplete += new EventHandler(Page_InitComplete); } internal void Page_InitComplete(object sender, EventArgs e) { if (_initialized) { return; } Debug.Assert(_dataSource != null); MetaTable table = DynamicDataExtensions.GetMetaTable(_dataSource, Context); int itemIndex = 0; foreach (MetaColumn column in table.GetFilteredColumns()) { FilterRepeaterItem item = new FilterRepeaterItem() { DataItemIndex = itemIndex, DisplayIndex = itemIndex }; itemIndex++; ItemTemplate.InstantiateIn(item); Controls.Add(item); DynamicFilter filter = item.FindControl(DynamicFilterContainerId) as DynamicFilter; if (filter == null) { throw new InvalidOperationException( String.Format(CultureInfo.CurrentCulture, DynamicDataResources.FilterRepeater_CouldNotFindControlInTemplate, ID, typeof(QueryableFilterUserControl).FullName, DynamicFilterContainerId)); } filter.Context = Context; // needed for unit testing filter.DataField = column.Name; item.DataItem = column; item.DataBind(); item.DataItem = null; // Keep track of all the filters we create _filters.Add(filter); } _filters.ForEach(f => f.Initialize(_dataSource)); _initialized = true; } IQueryable IFilterExpressionProvider.GetQueryable(IQueryable source) { foreach (DynamicFilter filter in _filters) { source = ((IFilterExpressionProvider)filter).GetQueryable(source); } return source; } #endregion private class FilterRepeaterItem : Control, IDataItemContainer { public object DataItem { get; internal set; } public int DataItemIndex { get; internal set; } public int DisplayIndex { get; internal set; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextMarkerSource.cs
- FragmentNavigationEventArgs.cs
- DynamicQueryableWrapper.cs
- MarkerProperties.cs
- BorderGapMaskConverter.cs
- ServicePoint.cs
- EndpointBehaviorElement.cs
- XmlSchemaAnnotation.cs
- BitmapCache.cs
- _SSPISessionCache.cs
- FloaterParaClient.cs
- ServiceSecurityAuditElement.cs
- MasterPage.cs
- MimeMapping.cs
- ImagingCache.cs
- ZipPackage.cs
- X509UI.cs
- PolicyAssertionCollection.cs
- DataGridPagerStyle.cs
- BindingCompleteEventArgs.cs
- QueryCacheEntry.cs
- CompilerGlobalScopeAttribute.cs
- FocusWithinProperty.cs
- TextDecoration.cs
- DPCustomTypeDescriptor.cs
- Light.cs
- NameSpaceExtractor.cs
- RIPEMD160.cs
- ProvidePropertyAttribute.cs
- GridViewRow.cs
- SqlDataRecord.cs
- WebPartExportVerb.cs
- PersonalizableTypeEntry.cs
- TagElement.cs
- UrlPath.cs
- Avt.cs
- TableRow.cs
- HttpTransportElement.cs
- FontFaceLayoutInfo.cs
- AutomationTextAttribute.cs
- RC2.cs
- Pair.cs
- NavigatingCancelEventArgs.cs
- TextView.cs
- SoapExtensionTypeElementCollection.cs
- XsltSettings.cs
- OleDbDataReader.cs
- BaseConfigurationRecord.cs
- Viewport3DVisual.cs
- SqlDataSourceAdvancedOptionsForm.cs
- CubicEase.cs
- TextOutput.cs
- CellLabel.cs
- KeyGestureConverter.cs
- HitTestWithGeometryDrawingContextWalker.cs
- DesignerDataConnection.cs
- WindowsClientCredential.cs
- SevenBitStream.cs
- HttpStreamMessageEncoderFactory.cs
- EncryptedData.cs
- EditorPart.cs
- DataViewManagerListItemTypeDescriptor.cs
- HandledEventArgs.cs
- GlyphsSerializer.cs
- MetabaseSettings.cs
- UrlMapping.cs
- Polyline.cs
- HttpPostClientProtocol.cs
- DataGridGeneralPage.cs
- CanonicalFormWriter.cs
- OleDbRowUpdatedEvent.cs
- Bind.cs
- ItemsChangedEventArgs.cs
- DashStyles.cs
- NamedPipeProcessProtocolHandler.cs
- ProxySimple.cs
- BuildResult.cs
- TargetInvocationException.cs
- HtmlEncodedRawTextWriter.cs
- Helper.cs
- CodePrimitiveExpression.cs
- CuspData.cs
- CodeDelegateInvokeExpression.cs
- UrlPropertyAttribute.cs
- GestureRecognizer.cs
- DataGridViewRowStateChangedEventArgs.cs
- PriorityChain.cs
- XmlSchema.cs
- ObjectConverter.cs
- CryptoHandle.cs
- FontInfo.cs
- SafeNativeMethods.cs
- AuthStoreRoleProvider.cs
- odbcmetadatacollectionnames.cs
- InternalsVisibleToAttribute.cs
- DatatypeImplementation.cs
- DataBindEngine.cs
- AdapterUtil.cs
- RelationshipDetailsCollection.cs
- DataGridTable.cs