We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fc3d43 commit 35da9b4Copy full SHA for 35da9b4
src/kendo.pager.js
@@ -115,7 +115,9 @@ var __meta__ = { // jshint ignore:line
115
if (options.dataSource && !options.dataSource.total()) {
116
that.list.empty().append(that.currentPageTemplate({ text: 0 })).append(that.selectTemplate({ text: 0 }));
117
}
118
- that.list.wrap('<div class="k-pager-numbers-wrap"></div>');
+ if (!that.list.parent().hasClass("k-pager-numbers-wrap")) {
119
+ that.list.wrap('<div class="k-pager-numbers-wrap"></div>');
120
+ }
121
122
123
if (options.input) {
0 commit comments