This question is locked. New answers and comments are not allowed.
Is there a way to customize the header text of the grid so that on mouse over it displays a tooltip or an alternatetext for a tag?
I have a grid like
Thanks
I have a grid like
Html.Telerik().Grid(Model) .Name("Grid") .Columns(columns => { columns.Bound(o => o.FirstName).Title("FirstName").Width(100); }) .Sortable(sort => sort.Enabled(true)) .Scrollable(scrolling => scrolling.Height(350)) .Footer(false) .Pageable(paging => paging.Enabled(false)) .Groupable(grouping => grouping.Enabled(false)) .Render();Thanks