Skip to content

Commit e9ecd6c

Browse files
authored
updated excel-like filtering description
1 parent 90384a5 commit e9ecd6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

controls/grid/functionality/filtering/checklist-filtering.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ To specify what values will be displayed in the ListBox control you need to defi
503503
## FilterType HeaderContext
504504

505505

506-
This filtering type provides look and feel that resembles the filter in Excel. It is available for RadGrid since Q3 2015. To enable this mode you should set the **FilterType** property of RadGrid to **HeaderContext** and turn on the header context menu (**EnableHeaderContextMenu="true"**).
506+
This filtering type provides look and feel that resembles the filter in Excel. It is available for RadGrid since Q3 2015. To enable this mode you should set the **FilterType** property of RadGrid to **HeaderContext**. Then you need to turn on the header context menu (**EnableHeaderContextMenu="true"**) and the context filter menu (**EnableHeaderContextFilterMenu="true"**).
507507

508508
>note If you are using **client-side binding** the header context menu must be disabled (**EnableHeaderContextMenu="false"**). Additionally you should populate the HeaderContext filter menu by using a **Web Service** instead of using **LoadOnDemand** feature.
509509
>
@@ -523,7 +523,7 @@ The code snippets below showcase a sample scenario where the HeaderContext Filte
523523
FilterType="HeaderContext"
524524
OnFilterCheckListItemsRequested="RadGrid1_FilterCheckListItemsRequested">
525525
526-
<MasterTableView CommandItemDisplay="Top" DataKeyNames="ID" EnableHeaderContextMenu="true" >
526+
<MasterTableView CommandItemDisplay="Top" DataKeyNames="ID" EnableHeaderContextMenu="true" EnableHeaderContextFilterMenu="true">
527527
528528
<Columns>
529529
<telerik:GridBoundColumn DataField="ID" HeaderText="ID" UniqueName="ID">

0 commit comments

Comments
 (0)