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
I need to add an image icon in GridColumnGroup near the column text.
Is there a way to add it?
protected
void
Page_PreRenderComplete(
object
sender, EventArgs e)
{
GridHeaderItem header = RadGrid1.MasterTableView.GetItems(GridItemType.Header)[0]
as
GridHeaderItem;
foreach
(GridTableHeaderCell cell
in
header.Cells)
if
(cell.ColumnSpan > 1 || cell.Text ==
"Col Group Text"
)
cell.Text = cell.Text +
"<img src='arrowUp.png' alt='Col Group Image' />"
;
}