Wijmo UI for the Web
Custom Pager Strings
Wijmo User Guide > Concepts > Localization and Globalization > Custom Pager Strings

The only strings in the Pager widget that are localizable are handled using the firstPageText andlastPageText options. The default values are "First" and "Last," respectively. You can localize or customize these strings using code like the following.

Custom String Script
Copy Code
<script type="text/javascript">
  $(document).ready(function () {
    $("#element").wijpager({
       firstPageText: "Première",
       lastPageText: "Dernier"
    });
  });
</script>
See Also

Widgets