RadGrid for ASP.NET

RadGrid Send comments on this topic.
AllowFilteringByColumn Property
See Also 
Telerik.WebControls Namespace > GridTableView Class : AllowFilteringByColumn Property


Gets or sets a value indicating whether the filtering by column feature is enabled.

  

 

Namespace: Telerik.WebControls
Assembly: RadGrid (in RadGrid.dll)

Syntax

Visual Basic (Declaration) 
Public Overridable Property AllowFilteringByColumn As Boolean
Visual Basic (Usage)Copy Code
Dim instance As GridTableView
Dim value As Boolean
 
instance.AllowFilteringByColumn = value
 
value = instance.AllowFilteringByColumn
C# 
public virtual bool AllowFilteringByColumn {get; set;}

Return Value

true if the filtering by column feature is enabled; otherwise, false. Default value is the value of RadGrid.AllowFilteringByColumn.

Remarks

When the value is true, GridTableView will display the filtering item, under the table's header item. The filtering can be controlled based on a column through column properties: GridColumn.FilterListOptions , GridColumn.CurrentFilterFunction, GridColumn.CurrentFilterValue. The column GridColumn.SupportsFiltering method is used to determine if a column can be used with filtering. Generally, this function returns the value set to AllowFiltering for a specific column. For example GridBoundColumn will return the values of GridBoundColumn.AllowFiltering property.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also