I have a simple Grid bound to a Model. Works nice. I need to place tool tips, different for each column header, on the grid. I don't see an MVC object to do that though?
@(Html.Kendo().Grid(Model.Items as IEnumerable<
Holding
>)
.Name("KendoCGrid")
.Columns(columns =>
{
columns.Bound(e => e.SymbolDescription).Title("Security Name");
columns.Bound(e => e.Symbol).Title("Symbol");
columns.Bound(e => e.SecurityType).Title("Type");
})
.Sortable()
.DataSource(dataSource=>dataSource
.Ajax()
.PageSize(50)
.ServerOperation(false)
)