wijmo.pager.wijpager Namespace > options type : firstPageText Option |
Default value: 'First'
An option that indicates the text to display for the first-page button. The text will display like a tooltip when a user hovers over the first-page button.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").wijpager("option", "firstPageText"); // Set value var newValue; // Type: string $(".selector").wijpager("option", "firstPageText", newValue); }); |
Javascript (Specification) | |
---|---|
|
// Here's the general way you'll set the option: $("#element").wijpager({ firstPageText: "Go To First" });