New to Kendo UI for jQuery? Start a free 30-day trial

Localization

Updated on Sep 8, 2026

The Pager provides options for defining the tooltips for its page and navigation links, information text and labels.

To localize the messages, set the desired strings in the messages field.

The example below shows how to change the tooltip of the refresh button and the information message.

Example
View Source
<div id="pager"></div>

<script>
    var dataSource = new kendo.data.DataSource({
      data: [
        { productName: "Tea", category: "Beverages" },
        { productName: "Coffee", category: "Beverages" },
        { productName: "Ham", category: "Food" },
        { productName: "Bread", category: "Food" }
      ],
      pageSize: 2
    });

    $("#pager").kendoPager({
      dataSource: dataSource,
      refresh: true,
      messages: {
        refresh: "Refresh data",
        display: "Showing {0}-{1} from {2} data items"
      }
    });

    dataSource.read();
</script>
<style>
  #pager {
   margin-top: 100px;
  }
</style>

See Also

In this article
See Also
Not finding the help you need?
Contact Support