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
// Access your column here
RadGrid1.MasterTableView.Columns.FindByUniqueName(
"YourColumnUniqueName"
).HeaderText =
"Something"
;
// Access your column here but after Columncreated event or in pagePrerender, GridPrerender
foreach
(GridColumn col
in
RadGrid1.MasterTableView.Columns)
//RadGrid1.Columns
{
if
(col.UniqueName ==
)
GridBoundColumn bCol = col
as
GridBoundColumn;
// Acceess your column here
}