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

Disable filter for all columns of grid

2 Answers 368 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Walter
Top achievements
Rank 1
Walter asked on 10 Nov 2009, 06:35 PM
Hello,

I would like to disable the filter for all columns of the grid. (filter icon should not be displayed in the colum header)
Unfortunately I did not a find a corresponding property.

Thanks for the assistance.
Daniel

2 Answers, 1 is accepted

Sort by
0
Accepted
David Ocasio
Top achievements
Rank 2
Iron
Veteran
Iron
answered on 10 Nov 2009, 06:57 PM
RadGridViewName.IsFilteringAllowed = False 

where RadGridviewName is the name of your instance of RadGridview

or in xaml

<telerikGridView:RadGridView x:Name="RadGridViewName" IsFilteringAllowed="False" AutoGenerateColumns="True">  
</telerikGridView:RadGridView> 
 
 

where telerikGridView is the namespace

thanks
dco
0
Walter
Top achievements
Rank 1
answered on 11 Nov 2009, 07:54 AM
Thanks you very much.
(I thought "IsFilteringAllowed" is read-only as some of the other "Is...." properties)
Tags
GridView
Asked by
Walter
Top achievements
Rank 1
Answers by
David Ocasio
Top achievements
Rank 2
Iron
Veteran
Iron
Walter
Top achievements
Rank 1
Share this question
or