In my radgrid I want to display filter,grouping,sorting options for columns. So I made EnableHeaderContextMenu="true".
Thanks
<rad:RadGrid ID="myGrid" runat="server" AllowSorting="True" AutoGenerateColumns="false" AllowPaging="True" GridLines="Both" GroupingEnabled="true" AllowFilteringByColumn="true" EnableAJAX="True" EnableHeaderContextMenu="true" ShowGroupPanel="false" ShowFooter="True" PageSize="20" EnableHeaderContextFilterMenu="true" AllowMultiRowEdit="true" AllowMultiRowSelection="true" OnNeedDataSource="myGrid_NeedDataSource" OnDetailTableDataBind="myGrid_DetailedTableDataBind" OnItemDataBound="myGrid_OnItemDataBound" OnPreRender="myGrid_OnPreRender"> <ClientSettings EnableRowHoverStyle="true" Resizing-AllowColumnResize="True" AllowColumnsReorder="True" ReorderColumnsOnClient="True" EnablePostBackOnRowClick="true"> <Selecting AllowRowSelect="True" /> <ClientEvents OnGridCreated="OnGridCreated" /> </ClientSettings>The problem here is , it doesnt show checkboxed for displaying/hiding columns.
Where as other pages are working fine.
Appriciate your help.
Thanks