I am trying to reload data from a new ajax source.
i means that when the page loads, it loads from one source, but after some actions on the page, it needs to be downloaded from another source.
I try to execute it through fnreloadajax() , but it does not work, I mean all fnreload ajax, it reloads the table, but not from a new source
I read the docs for fnreloadajax() http://www.datatables.net/plug-ins/api/fnReloadAjax
but when I tried like this.
var GroupID = e.val; url = "admin/usersManagePermissions/listFormsInGroups_DT/"+GroupID; oTable.fnReloadAjax(url);
I did not get any errors, but also datatables do not reload the table from a new source. it only loads the table from the previous / original source that was defined to it.
what's wrong here?
javascript jquery ajax datatables
Sizzling code
source share