tablesorterPager does not work. (with error message)
I am sorting my table with tablesorter.
It works well.
As my consequences are growing longer, I am needed to get pager.
I used tablesorterPager, it is not working.
Error message is below.
jquery.tablesorter.pager.js:949 Uncaught TypeError: ts.debug is not a function
at init (jquery.tablesorter.pager.js:949)
at HTMLTableElement.<anonymous> (jquery.tablesorter.pager.js:1182)
at Function.each (jquery-2.1.4.js:374)
at jQuery.fn.init.each (jquery-2.1.4.js:139)
at jQuery.fn.init.$this.construct [as tablesorterPager] (jquery.tablesorter.pager.js:1179)
at Object.success (players.php:140)
at fire (jquery-2.1.4.js:3099)
at Object.fireWith [as resolveWith] (jquery-2.1.4.js:3211)
at done (jquery-2.1.4.js:8264)
at XMLHttpRequest.<anonymous> (jquery-2.1.4.js:8605)
ajax is
$.ajax({
url : "/web1/ice_hockey/report/call_report.php",
type : "post",
data : params,
dataType: "json",
success : function(data){
$('.b7').append('<table>').append(table_header(reportType));
$('#caption').hide();
$('table').attr('id', 'tb');
$('table').addClass('tablesorter');
var table_body = ''
$.each(data, function(i, item){
table_body += '<tr>';
for(var e in item){
table_body += '<td>' + item[e] + '</td>';
}
table_body += '</tr>';
});
$('tbody').append(table_body).trigger('applyWidgets');
$('#tb').after(pager)
var resort = true;
$('table').trigger('update', [resort]);
$('#tb').tablesorter()
.tablesorterPager({
container: $("#pager")
});
},
error : function(jqXHR, textStatus, errorThrown) {
console.log(jqXHR.responseText);
}
});
});
My pager is below and it is going after table tag.
var pager = '<div id="pager" class="tablesorterPager">' +
'<form><img src="/web1/ice_hockey/css/pager/icons/first.png" class="first">'+
'<img src="/web1/ice_hockey/css/pager/icons/prev.png" class="prev">'+
'<input type="text" class="pagedisplay">'+
'<img src="/web1/ice_hockey/css/pager/icons/next.png" class="next">'+
'<img src="/web1/ice_hockey/css/pager/icons/last.png" class="last">'+
'<select class="pagesize">'+
'<option selected="selected" value="10">10</option>'+
'<option value="20">20</option>'+
'<option value="30">30</option>'+
'<option value="40">40</option>'+
' </select>'+
' </form>'+
'</div>';
I want to know when that error occurs how to resolve that error.
I think my description is can be little. If so let me know with anything needed. Thanks always!
jquery tablesorter pager
add a comment |
I am sorting my table with tablesorter.
It works well.
As my consequences are growing longer, I am needed to get pager.
I used tablesorterPager, it is not working.
Error message is below.
jquery.tablesorter.pager.js:949 Uncaught TypeError: ts.debug is not a function
at init (jquery.tablesorter.pager.js:949)
at HTMLTableElement.<anonymous> (jquery.tablesorter.pager.js:1182)
at Function.each (jquery-2.1.4.js:374)
at jQuery.fn.init.each (jquery-2.1.4.js:139)
at jQuery.fn.init.$this.construct [as tablesorterPager] (jquery.tablesorter.pager.js:1179)
at Object.success (players.php:140)
at fire (jquery-2.1.4.js:3099)
at Object.fireWith [as resolveWith] (jquery-2.1.4.js:3211)
at done (jquery-2.1.4.js:8264)
at XMLHttpRequest.<anonymous> (jquery-2.1.4.js:8605)
ajax is
$.ajax({
url : "/web1/ice_hockey/report/call_report.php",
type : "post",
data : params,
dataType: "json",
success : function(data){
$('.b7').append('<table>').append(table_header(reportType));
$('#caption').hide();
$('table').attr('id', 'tb');
$('table').addClass('tablesorter');
var table_body = ''
$.each(data, function(i, item){
table_body += '<tr>';
for(var e in item){
table_body += '<td>' + item[e] + '</td>';
}
table_body += '</tr>';
});
$('tbody').append(table_body).trigger('applyWidgets');
$('#tb').after(pager)
var resort = true;
$('table').trigger('update', [resort]);
$('#tb').tablesorter()
.tablesorterPager({
container: $("#pager")
});
},
error : function(jqXHR, textStatus, errorThrown) {
console.log(jqXHR.responseText);
}
});
});
My pager is below and it is going after table tag.
var pager = '<div id="pager" class="tablesorterPager">' +
'<form><img src="/web1/ice_hockey/css/pager/icons/first.png" class="first">'+
'<img src="/web1/ice_hockey/css/pager/icons/prev.png" class="prev">'+
'<input type="text" class="pagedisplay">'+
'<img src="/web1/ice_hockey/css/pager/icons/next.png" class="next">'+
'<img src="/web1/ice_hockey/css/pager/icons/last.png" class="last">'+
'<select class="pagesize">'+
'<option selected="selected" value="10">10</option>'+
'<option value="20">20</option>'+
'<option value="30">30</option>'+
'<option value="40">40</option>'+
' </select>'+
' </form>'+
'</div>';
I want to know when that error occurs how to resolve that error.
I think my description is can be little. If so let me know with anything needed. Thanks always!
jquery tablesorter pager
add a comment |
I am sorting my table with tablesorter.
It works well.
As my consequences are growing longer, I am needed to get pager.
I used tablesorterPager, it is not working.
Error message is below.
jquery.tablesorter.pager.js:949 Uncaught TypeError: ts.debug is not a function
at init (jquery.tablesorter.pager.js:949)
at HTMLTableElement.<anonymous> (jquery.tablesorter.pager.js:1182)
at Function.each (jquery-2.1.4.js:374)
at jQuery.fn.init.each (jquery-2.1.4.js:139)
at jQuery.fn.init.$this.construct [as tablesorterPager] (jquery.tablesorter.pager.js:1179)
at Object.success (players.php:140)
at fire (jquery-2.1.4.js:3099)
at Object.fireWith [as resolveWith] (jquery-2.1.4.js:3211)
at done (jquery-2.1.4.js:8264)
at XMLHttpRequest.<anonymous> (jquery-2.1.4.js:8605)
ajax is
$.ajax({
url : "/web1/ice_hockey/report/call_report.php",
type : "post",
data : params,
dataType: "json",
success : function(data){
$('.b7').append('<table>').append(table_header(reportType));
$('#caption').hide();
$('table').attr('id', 'tb');
$('table').addClass('tablesorter');
var table_body = ''
$.each(data, function(i, item){
table_body += '<tr>';
for(var e in item){
table_body += '<td>' + item[e] + '</td>';
}
table_body += '</tr>';
});
$('tbody').append(table_body).trigger('applyWidgets');
$('#tb').after(pager)
var resort = true;
$('table').trigger('update', [resort]);
$('#tb').tablesorter()
.tablesorterPager({
container: $("#pager")
});
},
error : function(jqXHR, textStatus, errorThrown) {
console.log(jqXHR.responseText);
}
});
});
My pager is below and it is going after table tag.
var pager = '<div id="pager" class="tablesorterPager">' +
'<form><img src="/web1/ice_hockey/css/pager/icons/first.png" class="first">'+
'<img src="/web1/ice_hockey/css/pager/icons/prev.png" class="prev">'+
'<input type="text" class="pagedisplay">'+
'<img src="/web1/ice_hockey/css/pager/icons/next.png" class="next">'+
'<img src="/web1/ice_hockey/css/pager/icons/last.png" class="last">'+
'<select class="pagesize">'+
'<option selected="selected" value="10">10</option>'+
'<option value="20">20</option>'+
'<option value="30">30</option>'+
'<option value="40">40</option>'+
' </select>'+
' </form>'+
'</div>';
I want to know when that error occurs how to resolve that error.
I think my description is can be little. If so let me know with anything needed. Thanks always!
jquery tablesorter pager
I am sorting my table with tablesorter.
It works well.
As my consequences are growing longer, I am needed to get pager.
I used tablesorterPager, it is not working.
Error message is below.
jquery.tablesorter.pager.js:949 Uncaught TypeError: ts.debug is not a function
at init (jquery.tablesorter.pager.js:949)
at HTMLTableElement.<anonymous> (jquery.tablesorter.pager.js:1182)
at Function.each (jquery-2.1.4.js:374)
at jQuery.fn.init.each (jquery-2.1.4.js:139)
at jQuery.fn.init.$this.construct [as tablesorterPager] (jquery.tablesorter.pager.js:1179)
at Object.success (players.php:140)
at fire (jquery-2.1.4.js:3099)
at Object.fireWith [as resolveWith] (jquery-2.1.4.js:3211)
at done (jquery-2.1.4.js:8264)
at XMLHttpRequest.<anonymous> (jquery-2.1.4.js:8605)
ajax is
$.ajax({
url : "/web1/ice_hockey/report/call_report.php",
type : "post",
data : params,
dataType: "json",
success : function(data){
$('.b7').append('<table>').append(table_header(reportType));
$('#caption').hide();
$('table').attr('id', 'tb');
$('table').addClass('tablesorter');
var table_body = ''
$.each(data, function(i, item){
table_body += '<tr>';
for(var e in item){
table_body += '<td>' + item[e] + '</td>';
}
table_body += '</tr>';
});
$('tbody').append(table_body).trigger('applyWidgets');
$('#tb').after(pager)
var resort = true;
$('table').trigger('update', [resort]);
$('#tb').tablesorter()
.tablesorterPager({
container: $("#pager")
});
},
error : function(jqXHR, textStatus, errorThrown) {
console.log(jqXHR.responseText);
}
});
});
My pager is below and it is going after table tag.
var pager = '<div id="pager" class="tablesorterPager">' +
'<form><img src="/web1/ice_hockey/css/pager/icons/first.png" class="first">'+
'<img src="/web1/ice_hockey/css/pager/icons/prev.png" class="prev">'+
'<input type="text" class="pagedisplay">'+
'<img src="/web1/ice_hockey/css/pager/icons/next.png" class="next">'+
'<img src="/web1/ice_hockey/css/pager/icons/last.png" class="last">'+
'<select class="pagesize">'+
'<option selected="selected" value="10">10</option>'+
'<option value="20">20</option>'+
'<option value="30">30</option>'+
'<option value="40">40</option>'+
' </select>'+
' </form>'+
'</div>';
I want to know when that error occurs how to resolve that error.
I think my description is can be little. If so let me know with anything needed. Thanks always!
jquery tablesorter pager
jquery tablesorter pager
asked Jan 1 at 7:35
sk Jinsk Jin
185
185
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53993802%2ftablesorterpager-does-not-work-with-error-message%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53993802%2ftablesorterpager-does-not-work-with-error-message%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown