Programatically loading AJAX data
Programatically loading AJAX data
thelinuxlich
Posts: 4Questions: 0Answers: 0
I have a dataTable with ajaxSource but I want it to load data only when I click a link. How can I disable data loading on initialization?
This discussion has been closed.
Replies
Allan
function foo() {
qtable = $('mytable').dataTables();
}
$('button').click(function() {
foo();
}
...
Just an idea... :)