Intersoft WebGrid Documentation
AutomaticFilter Property
See Also  Send Feedback
ISNet.WebUI.WebGrid Namespace > WebGridTable Class : AutomaticFilter Property






Specifies whether or not to allow WebGrid automatically handle filtering operation.

Syntax

Visual Basic (Declaration) 
<DescriptionAttribute("Specifies whether or not to allow WebGrid automatically handle filtering operation.")>
<ISNet.Serialization.BinarySerializableAttribute()>
<NotifyParentPropertyAttribute(True)>
<DefaultValueAttribute()>
Public Property AutomaticFilter As Boolean
Visual Basic (Usage)Copy Code
Dim instance As WebGridTable
Dim value As Boolean
 
instance.AutomaticFilter = value
 
value = instance.AutomaticFilter
C# 
[DescriptionAttribute("Specifies whether or not to allow WebGrid automatically handle filtering operation.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[NotifyParentPropertyAttribute(true)]
[DefaultValueAttribute()]
public bool AutomaticFilter {get; set;}
Delphi 
public read-write property AutomaticFilter: Boolean; 
JScript 
DescriptionAttribute("Specifies whether or not to allow WebGrid automatically handle filtering operation.")
ISNet.Serialization.BinarySerializableAttribute()
NotifyParentPropertyAttribute()
DefaultValueAttribute()
public function get,set AutomaticFilter : boolean
Managed Extensions for C++ 
[DescriptionAttribute("Specifies whether or not to allow WebGrid automatically handle filtering operation.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[NotifyParentPropertyAttribute(true)]
[DefaultValueAttribute()]
public: __property bool get_AutomaticFilter();
public: __property void set_AutomaticFilter( 
   bool value
);
C++/CLI 
[DescriptionAttribute("Specifies whether or not to allow WebGrid automatically handle filtering operation.")]
[ISNet.Serialization.BinarySerializableAttribute()]
[NotifyParentPropertyAttribute(true)]
[DefaultValueAttribute()]
public:
property bool AutomaticFilter {
   bool get();
   void set (    bool value);
}

Remarks

By default, WebGrid handles all filtering operation automatically. That means developers don't required to write additional programmatic codes for the filtering operation and hence can focus more on core business logic.

For greater level of customization, developers can choose to turn off AutomaticFilter and write their own codes to handle filtering operation through CustomFilter event.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

Reference

WebGridTable Class
WebGridTable Members

Tasks

How-to: Disable automatic filter in a specific table

Concepts

Advanced User Interactions

Other Resources

Filtering

©2012 Intersoft Solutions Corp. All Rights Reserved.