Free source code programming in C#, VB.Net, Java, SQL
Search This Blog
Friday, November 9, 2012
Disable Sorting for RadGrid Column, ASP net
Telerik > RadGrid > GridBoundColumn> AllowSorting Gets or sets a value indicating whether the sorting feature is enabled. Example Disable Sorting for RadGrid Column GridColumn col = Grid.MasterTableView.Columns[4]; GridBoundColumn colB = (GridBoundColumn)col;
colB.AllowSorting = false;