Currently working with Tabulator 3.5 and I have a question...
Can I dynamically add a row to tabulator using AJAX to get the data, similar to how we set data using setData
?
For example, instead of:
$("#picks-table").tabulator("addRow", {"player":"La Di Da", "owner":"Some Spud"},true);
I would like to do something like this:
$("#picks-table").tabulator("addRow", "updateDraftPicks.php",true);
And expect the output from the updateDraftPicks.php script to look like this:
{"player":"La Di Da", "owner":"Some Spud"}
I'm skeptical if this is possible, but before exploring more complicated solutions, I just wanted to make sure I'm not missing anything.
Thank you for your assistance!