Search
10251 results 3771-3780
Forum
- 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" } });
- 5th Nov 2014$.fn.dataTable.Editor is not a constructor - RequireJS with DataTablesfn.dataTables.Editor({}); $('#demo') .dataTable({ 'language': { 'url': '//cdn.datatables.net/plug-ins/380cb78f450/i18n/Dutch.json' } }) .addClass('table table-striped table-bordered');
- 3rd Nov 2014StateLoad Via Button Clickorder ... $.ajax({ type: 'POST', url: baseurl + 'MyController/LoadSavedState', data: { url:
- 31st Oct 2014mRender error after use 1.10 releasePost formatting is Markdown based. Regarding the issue the o property in your mRender function is already the data defined by url. See the columns.render documentation for an example of creating a link. Allan
- 31st Oct 2014Server-side processing, sent parameters in hungarian notation instead of camelCaseHi James, You are probably using sAjaxSource to specify the Ajax url rather than the newer ajax parameter. The old style parameter forces the old style parameters for backwards compatibility. More information in the manual. Allan