From Second Pagination Problem facing
From Second Pagination Problem facing
pramaniksandip
Posts: 1Questions: 0Answers: 0
Sir,
In the data table, i add column (Radio Button) on a table, on change on the radio button checked value of that row have pass to server side. Its work in first pagination if i click on any rows values is capture and it pass to server. But from second pagination if i click on any radio button of any row value did not capture by the data table.
HTML:
<%=aaaa%>
<%=bbbb%>
<%=cccc%>
JS:
$("input[name='idcheckbox']").change(function() {
var product = $("input[name='idcheckbox']:checked").val();
alert(product);
}
This is work till first page, but after second pagination its not work.
Please assist me, how to resolve the issue.
In the data table, i add column (Radio Button) on a table, on change on the radio button checked value of that row have pass to server side. Its work in first pagination if i click on any rows values is capture and it pass to server. But from second pagination if i click on any radio button of any row value did not capture by the data table.
HTML:
<%=aaaa%>
<%=bbbb%>
<%=cccc%>
JS:
$("input[name='idcheckbox']").change(function() {
var product = $("input[name='idcheckbox']:checked").val();
alert(product);
}
This is work till first page, but after second pagination its not work.
Please assist me, how to resolve the issue.
This discussion has been closed.
Replies
Delighted to. Please follow the forum rules and link to a test case.
I would also suggest you read the top(!) FAQ, as it sounds like that is what you are having a problem with: http://datatables.net/faqs#events .
Allan