This question is locked. New answers and comments are not allowed.
Hi,
I am using Telerik MVC Grid. I want to show tool tips for navigation buttons ie Next and Previous.
I used follwoing code for Paging -
I am using Telerik MVC Grid. I want to show tool tips for navigation buttons ie Next and Previous.
I used follwoing code for Paging -
.Pageable(paging => paging.PageSize(
Convert.ToInt32(Session["PageSize"].ToString()))
.Style(GridPagerStyles.NextPrevious)
.Position(GridPagerPosition.Bottom).PageTo((ViewData["PageIndex"] != null) ? (int)ViewData["PageIndex"] : 1))
Can anybody please tell, how to set tooltip for Next and Previous buttons of paging on MVC grid ?