---
title: "Devexpress Gridview Filter Control"  
description: "Devexpress Gridview Filter Control"  
author: "Anonymous User"  
published: 2013-09-03  
updated: 2013-09-03  
canonical: https://www.mindstick.com/forum/1435/devexpress-gridview-filter-control  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# Devexpress Gridview Filter Control

I have a ASPxGridView [component](https://www.mindstick.com/articles/12262/learn-how-to-make-a-component-in-magento-2) that is filled from a [SQL query](https://www.mindstick.com/forum/529/rename-table-name-and-column-name-using-sql-query) I [wanted to apply](https://answers.mindstick.com/qa/93721/i-wanted-to-apply-for-a-job-at-mindstick-what-are-the-procedures-for-that) a [filter](https://www.mindstick.com/forum/1176/filter-in-a-xml-file-in-c-sharp) on my ASPX [Gridview](https://www.mindstick.com/articles/873/update-delete-edit-gridview-in-asp-dot-net) so I wrote:

```
<dx:ASPxGridView runat="server" ID="gvExecReq" Visible="false" AutoGenerateColumns="true"       
OnPageIndexChanged="gvExecReq_PageIndexChanged" OnBeforeColumnSortingGrouping="gvExecReq_BeforeColumnSortingGrouping">        **<Settings ShowFilterRow="True" />        <Settings ShowFilterBar="Visible" ShowHeaderFilterButton="True"
/>**   
</dx:ASPxGridView>
```

the filter is well established, but it is not [functional](https://www.mindstick.com/articles/13005/the-functional-aspects-of-laser-technology) What do I need to [add](https://www.mindstick.com/forum/12983/add-address-in-textbox-when-page-is-load-and-if-i-search-address-in-textbox-show-in-map-by-javascript) more?

## Replies

### Reply by Sumit Kesarwani

Hi Samuel, \

Please Use Following Settings For Filter To Be Operational :

```
     <Settings ShowHeaderFilterButton="true"    
EnableFilterControlPopupMenuScrolling="True"    
ShowFilterBar="Visible" ShowFilterRow="True" ShowFilterRowMenu="True" />
```

Also In The Columns of The Grid You Can Control The Condition of Filtering i.e. Contains, Equal, Does Not Contain etc.

<dx:GridViewDataColumn Settings-AutoFilterCondition="Contains" Settings-FilterMode="DisplayText">


---

Original Source: https://www.mindstick.com/forum/1435/devexpress-gridview-filter-control

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
