Hi,
I have a datatable (short version) like this:
id: "orderData",
view: "datatable",
datafetch: 5,
url: "server/index.php",
columns: [
{id: "id", header: "#", width: 70, sort: "int"},
{id: "nickname", header: ["Benutzername", {content: "textFilter"}], sort: "string", minWidth: 60, fillspace: 1},
{id: "firstname", header: ["Vorname", {content: "textFilter"}], sort: "int", minWidth: 60, fillspace: 1},
{id: "lastname", header: ["Nachname", {content: "textFilter"}], sort: "int", minWidth: 60, fillspace: 1},
{id: "gender", header: ["Geschlecht", {content: "selectFilter"}], sort: "int", minWidth: 60, fillspace: 1},
{id: "country", header: ["Land", {content: "multiSelectFilter"}], sort: "int", minWidth: 60, fillspace: 1},
],
pager: "pagerA",
While paging for first time on a page, data will be loaded from server. Second time on a certain page, data is loaded from cache → no server call again.
How is it possible to disable this handling. Every time a page is changed, I want to load live data from the server?
Thanks a lot.
Best regards
Sven.