missing support for ajaxMethod
See original GitHub issuecurrently only GET is available. Here’s one solution at line 1360
- type: "GET",
+ type: self.options.ajaxMethod?self.options.ajaxMethod:"GET",
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
missing : after property is ajax request - Stack Overflow
You cannot perform = assignment in a JS object. You must use the : operator. data: { id : $("#clientList").val() },.
Read more >Many AJAX requests are missing from data explorer/query ...
Many AJAX requests are missing from data explorer/query builder · The URL hash changes (usually using window.location.hash ). · A popstate event ...
Read more >.ajaxError() | jQuery API Documentation
When the user clicks the button and the Ajax request fails, because the requested file is missing, the log message is displayed. All...
Read more >Invalid Web Service Call Error - JQuery Post to a WebMethod
The web method expects a name parameter but the first AJAX request does not send a name parameter. It is a bit baffling...
Read more >The response data is missing from the ajax request error ...
This issue occurs, when the plugin sends the search query to the server, but does not get back anything. In most cases it...
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 FreeTop 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
Top GitHub Comments
Due to popular demand Tabulator can now make ajax requests with any HTTP request type.
There are two ways of doing this, if you are defining the request url when building the table using the ajaxURL option, then you can set the request type using the ajaxType option:
If you are triggering the request using the setData function, then you can pass the type in as an optional third argument:
Full details on how to use this functionality can be found in the Ajax Documentation
Many thanks