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
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
if (fr == 1)
{
if (e.Item is GridHeaderItem)
GridHeaderItem headerItem = (GridHeaderItem)e.Item;
headerItem.Cells[2].Text =
"New Name"; } } It works fine.But after it i cant sortthis column by clicking on column name?
protected
void
RadGrid1_ItemDataBound(
object
sender, GridItemEventArgs e)
if
(e.Item
is
GridHeaderItem)
LinkButton btn = (LinkButton)headerItem[
"EmployeeID"
].Controls[0];
//accessing the Header link button using UniqueName of column
btn.Text =
"New Name"
;
}