Is there any form to call a render table?
Is there any form to call a render table?
hhuneidie
Posts: 1Questions: 1Answers: 0
What I need
I usually call an ajax to get more data inside de event draw.dt
. This event is called when I change the page, sort or search.
But I need to dispatch that event manually.
Example: If I click a button I call table.draw()
or table.render()
What's the form to do that?
Image example
Answers
Do you mean how to do you call
draw()
? It's simply that:table.draw();
in your button's event handler.Allan