Configure The Filtering Mode
RadGridView has three filtering modes as described in the Filtering Basics article.
Popup Filtering
To enable the popup filtering mode, set RadGridView’s FilteringMode
property to Popup
or do not set anything, since this is the standard default filtering mode.
<telerik:RadGridView FilteringMode="Popup" />
Filter Row
To enable the filter row mode, set RadGridView’s FilteringMode
property to FilterRow
.
<telerik:RadGridView FilteringMode="FilterRow" />
Filter Editor
To enable the filter editor mode, set RadGridView’s FilteringMode
property to FilterEditor
.
<telerik:RadGridView FilteringMode="FilterEditor" />