This is a migrated thread and some comments may be shown as answers.

How can I localize the paging control in a RadGrid

1 Answer 60 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Gary
Top achievements
Rank 2
Gary asked on 11 May 2011, 12:14 AM
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.

Thanks,


Gary Graham

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 11 May 2011, 06:56 AM
Hello Gray,

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:
<PagerStyle Mode="NextPrevAndNumeric" FirstPageToolTip="Its my firstPage" NextPageToolTip="GoToMyNextPage"
PrevPageToolTip="GoToMyPreviousPage" LastPageToolTip="GoToMyLastPage" />

Also take a look at the following documentation.
Pager item.

Thanks,
Shinu.
Tags
Grid
Asked by
Gary
Top achievements
Rank 2
Answers by
Shinu
Top achievements
Rank 2
Share this question
or