You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api/javascript/ui/pager.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -287,7 +287,7 @@ Defines if a label showing current paging information will be displayed.
287
287
</style>
288
288
289
289
### input `Boolean`*(default: false)*
290
-
Defines if an input element which allows the user to navigate to given page will be displayed. If enabled the numeric buttons for pages will not be rendered.
290
+
Defines if an input element which allows the user to navigate to given page will be displayed. If enabled only the numeric input will be rendered in the numeric portion of the pager.
291
291
292
292
#### Example - show the navigate-to-page input
293
293
@@ -307,7 +307,7 @@ Defines if an input element which allows the user to navigate to given page will
307
307
$("#pager").kendoPager({
308
308
dataSource: dataSource,
309
309
input: true,
310
-
numeric: false
310
+
numeric: true
311
311
});
312
312
313
313
dataSource.read();
@@ -625,7 +625,7 @@ The label displayed before the pager input.
625
625
$("#pager").kendoPager({
626
626
dataSource: dataSource,
627
627
input: true,
628
-
numeric: false,
628
+
numeric: true,
629
629
messages: {
630
630
page: "Enter page"
631
631
}
@@ -661,7 +661,6 @@ The title of the numeric link page buttons of the **Pager**. The parameters avai
661
661
$("#pager").kendoPager({
662
662
dataSource: dataSource,
663
663
input: true,
664
-
numeric: false,
665
664
messages: {
666
665
pageButtonLabel: "This is page {0}"
667
666
}
@@ -677,7 +676,7 @@ The title of the numeric link page buttons of the **Pager**. The parameters avai
677
676
678
677
### messages.pageSizeDropDownLabel `String`*(default: "Page sizes drop down")*
679
678
680
-
The label applied to the page size DropDOwnList.
679
+
The label applied to the page size DropDownList.
681
680
682
681
#### Example
683
682
<div id="pager"></div>
@@ -696,7 +695,7 @@ The label applied to the page size DropDOwnList.
696
695
$("#pager").kendoPager({
697
696
dataSource: dataSource,
698
697
input: true,
699
-
numeric: false,
698
+
numeric: true,
700
699
messages: {
701
700
pageSizeDropDownLabel: "page size"
702
701
},
@@ -726,7 +725,7 @@ The label displayed before the pager input. Uses [kendo.format](/api/javascript/
0 commit comments