Search
10111 results 3631-3640
Forum
- 18th Nov 2014How to pass new POST parameters on Ajax.reload?Ok. I solved that way: "ajax": { "url": 'filter.php', "type": 'POST', "data": function ( d ) { return $('#formFilter').serialize(); } },
- 18th Nov 2014_fnAjaxParameters( oSettings ) returns empty search field for Dateajax.url() to change the url - event if you just
- 18th Nov 2014Comma decimal in editoryou might do: ajax: { url: ... dataSrc: function ( json ) { for
- 18th Nov 2014Extensions "Scroller" doesnot work correctly on IE-8You will need to be more specific - the only saving state example I can see doesn't use the scroller, and it works perfectly in IE 8 for me. How about a URL to the example that's failing for you?
- 12th Nov 2014Ajax.data - Invalid JSON Primitive ErrorHi all, I found the solution and am posting it here in case someone else encounters the issue. 'ajax': { 'type': 'POST', 'contentType': 'application/json; charset=utf-8', 'url': '@Url.Action("MethodAByName", "QuickStart")', 'data': function (d) { return "{name:'juni'}"; }, 'dataType': 'json', 'dataSrc': '', 'cache': false }
- 12th Nov 2014How to load data from ajax on button press?customerSearchButton").on("click", function (event) { $.ajax({ url: "", type: "post", data: { searchText:
- 12th Nov 2014Load data in datatable from ajax through button clickcustomerSearchButton").on("click", function (event) { $.ajax({ url: "", type: "post", data: { searchText:
- 11th Nov 2014Question about customizing Editor ajax objectajax.edit as a string URL. Might be a little
- 10th Nov 2014Keep column width constant with paginationpage to a public URL. Here it is. http://www.automated-trading-system.com/wp-content/uploads/datatables-test/Accounts.html
- 6th Nov 2014Server-side processing - ajax parameters causing page not foundIf you think the URL is the issue, you could use POST instead. I would think POST should be the default type in dataTables, but it isn't. var oTable = $('#dt_basic').dataTable({ "processing": true, "serverSide": true, "ajax": { url: "../docfleet/_includes/data_veiculo.php", type: "POST" } });