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

[Solved] How to remove column header filtering

1 Answer 211 Views
GridView
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Sarkis Matossian
Top achievements
Rank 1
Sarkis Matossian asked on 04 Dec 2009, 03:27 PM
Is there a way I can turn off the column header filtering and sorting?

Thanks.

1 Answer, 1 is accepted

Sort by
0
Accepted
Missing User
answered on 04 Dec 2009, 03:35 PM
Hi Sarkis Matossian,

You can turn off the filtering and sorting per column by setting the following properties:
<controls:RadGridView x:Name="RadGridView1" AutoGenerateColumns="False">
     <controls:RadGridView.Columns>
                <controls:GridViewDataColumn Header="CustomerID" DataMemberBinding="{Binding CustomerID}" IsFilterable="False" IsGroupable="False" IsSortable="False"/>
      </controls:RadGridView.Columns>
</controls:RadGridView>

Hope this helps. 

Regards,
Anastasia
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
GridView
Asked by
Sarkis Matossian
Top achievements
Rank 1
Answers by
Missing User
Share this question
or