Calling a function from a hyperlink
Calling a function from a hyperlink
I there, I am using fnRowCallback function to draw a hyperlink as follows:
"fnRowCallback": function(nRow, aoData, iDisplayIndex, iDisplayIndexFull) {
$('td:eq(0)', nRow).html('
"fnRowCallback": function(nRow, aoData, iDisplayIndex, iDisplayIndexFull) {
$('td:eq(0)', nRow).html('
This discussion has been closed.
Replies
Allan
No - with server-side processing you are loading old the data for the current page. Not the full data set (that's the whole point of server-side processing!).
If you are using server-side processing, filtering is done at the server - it is no way to filter just want is at the client (i.e. you cannot mix client-side and server-side processing). Whatever is doing the processing needs the full data set.
Allan