I have several rad grids on an aspx page and I need to localize the builtin paging control tool tips (i.e Next page, Previous Page) How do I do thet in VB (ASP.Net) I have looked all over the web and can not find a concise answer anywhwer.
You can easily set the tooltip from aspx itself. To localize the tooltips that appear when the mouse hovers over a
control in the pager, use the following sub-properties:
PagerStyle.PrevPageToolTip
specifies the tooltip that is displayed for the previous page button.
PagerStyle.PrevPagesToolTip
specifies the tooltip that is displayed for the previous pages button.
PagerStyle.NextPageToolTip specifies
the tooltip that is displayed for the next page button.
PagerStyle.NextPagesToolTip
specifies the tooltip that is displayed for the next pages button.
aspx:
<PagerStyleMode="NextPrevAndNumeric"FirstPageToolTip="Its my firstPage"NextPageToolTip="GoToMyNextPage" PrevPageToolTip="GoToMyPreviousPage"LastPageToolTip="GoToMyLastPage"/>
Also take a look at the following documentation. Pager item.