setting page in ajaxParams
See original GitHub issueHi Oli, I’m trying to “setData” forcing the page number to display, but Tabulator keeps replacing my page with 1.
To reload I’m using:
tabulator("setData", ajaxURL, ajaxParams);
Where ajaxURL us the URL I’m calling and ajaxParams
is:
{
page: "3",
format: "json"
}
It should generate an URL similar to ?format=json&page=3
, but it’s generating ?format=json&page=1
.
Issue Analytics
- State:
- Created 7 years ago
- Comments:16 (6 by maintainers)
Top Results From Across the Web
How to pass parameters in $ajax POST? - Stack Overflow
A solution is to use the jQuery.param function to build a query string that most scripts that process POST requests expect. $.ajax({ url:...
Read more >jQuery.ajax() | jQuery API Documentation
A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with...
Read more >jQuery Ajax Function: How to Make Asynchronous HTTP ...
In its first form, this function performs an Ajax request using the url parameter and the options specified in settings . In the...
Read more >jQuery ajax() Method - TutorialsTeacher
This tutorial shows how to send ajax request using jQuery ajax() method. The jQuery ajax() method provides core functionality of Ajax in jQuery....
Read more >jQuery AJAX Methods - W3Schools
AJAX is the art of exchanging data with a server, and update parts of a web page - without reloading the whole page....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hi again Oli, the solution was (as usual) first read the docs!, then use a custom paginator.
Excelent!, that worked!.