I have a table have 6 columns , I used datatable:
$('#datatable2').dataTable({
"oLanguage": { "sSearch": "Search " },
"oSearch": { "sSearch": "<% = requestId %>" }
});
when I use this table appear very nice but it didn't sort numbers when I add this
$('#datatable2').dataTable({
"aoColumns": [
{ "sType": "numeric-comma" },
null,
null,
null, null, null],
"oLanguage": { "sSearch": "search: " },
"oSearch": { "sSearch": "<% = requestId %>" }
});
it sort number correctly but it appears all the rows not 10 by 10 or 50 by 50 as this pic
please help!
when I use this code
paging:true,
"aoColumns": [{ "sType": "numeric" }, null, null,null , null, null],
it sort as I need but why it get number 129 in the second row ?
Note that:- My integer numbers is hyperlink

