This is a migrated thread and some comments may be shown as answers.

Dont show the suggestion part in the filters of the radGridView

2 Answers 26 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Iheb
Top achievements
Rank 1
Iheb asked on 27 Sep 2012, 01:07 PM
How can I make the area marked in this attached image not visible ?

(This is the standard filter of the radGridView) 

2 Answers, 1 is accepted

Sort by
0
Accepted
Vlad
Telerik team
answered on 27 Sep 2012, 01:09 PM
Hi,

You can set ShowDistinctFilters to False for desired column. Please check our documentation for more info about other columns properties. 

Greetings,
Vlad
the Telerik team

Time to cast your vote for Telerik! Tell DevPro Connections and Windows IT Pro why Telerik is your choice. Telerik is nominated in a total of 25 categories.

0
Iheb
Top achievements
Rank 1
answered on 27 Sep 2012, 01:44 PM
Thanks Vlad it worked.

And for those who want to set this property for all columns just add an AutoGeneratingColumn  event for the radGridView 

private void radGridView_AutoGeneratingColumn(object sender, GridViewAutoGeneratingColumnEventArgs e)
        {
            e.Column.ShowDistinctFilters = false;
        }


:)
Tags
General Discussions
Asked by
Iheb
Top achievements
Rank 1
Answers by
Vlad
Telerik team
Iheb
Top achievements
Rank 1
Share this question
or