my grid is defined in the following manner-
@(Html.Telerik().Grid<NPSPPOC.Models.
tblNPSPDetail>()
.DataBinding(dataBinding => dataBinding.Ajax().Select(
"TakeOwnershipAjax", "NPSP"))
.Name(
"MyGrid1")
.Columns(columns =>
{
columns.Bound(o => o.Priority).Title(
"!");
columns.Bound(o => o.CenterId).Title(
"Center Id");
columns.Bound(o => o.MPI).Title("MPI");
}))
I have tried to implement the header tooltip in the following manner-
columns.Bound(o => o.ClaimNumber).Title("Claim #").HeaderHtmlAttributes(new { title = "Claim Number" });
However, for cells, i do not know what to do. I want to use a java script instead of implementing the tooltip for header and cells separetely in the grid definition itself.
I tried out the solution at http://www.paynepoints.com/?page_id=29 but i cannot find the livequery plugin.
Please let me know a solution to this asap.