Hello,
I read this post http://www.jqwidgets.com/jquery-grid-with-server-side-paging-and-sorting/
I would like to perform the same operation but without the server side part, but using a local data access (it’s an offline app).
To be more clear, is it possible to adapt the source :
var source = {
datatype: “json”,
datafields: [bla bla],
url: ‘data.php’,
….
}
instead of setting a url, to set a javascript function that will catch the pagesize, the pagenumber, the sort parameters, and binding the source when the result is available (the promise part)?
Thanks for your help