Change ajax source after initial load.
Change ajax source after initial load.
I have the table working with paging and filtering, but I also want to bind to an event somewhere on the page (a click or whatever) that would change the ajax source and reinitialize the table.
I'm using this basically
[code]
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "../examples_support/server_processing.php"
} );
} );
[/code]
Thanks in advance,
PJ
I'm using this basically
[code]
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "../examples_support/server_processing.php"
} );
} );
[/code]
Thanks in advance,
PJ
This discussion has been closed.
Replies
Allan