Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
private
void
RadGrid1_ColumnCreated(
object
sender, Telerik.WebControls.GridColumnCreatedEventArgs e)
{
if
(e.Column.UniqueName ==
"ColumnUniqueName"
)
// place here your column unique name
GridBoundColumn boundColumn = e.Column
as
GridBoundColumn;
boundColumn.AllowFiltering=
false
;
}
protected
RadGrid1_PreRender(
sender, System.EventArgs e)
foreach
(GridColumn column
in
RadGrid1.Columns)
(column.UniqueName ==
(column
GridBoundColumn).AllowFiltering=
RadGrid1.Rebind();