Search
18450 results 5011-5020
Forum
- 31st Dec 2020Trying to replicate Cascading lists in EditorUpdate - I went back and got it working. In my case the solution was to add this to my php file that ajax was calling: header('Content-Type: application/json'); Hope it helps.
- 31st Dec 2020combining $search and $userid in where clause in server filevar editor = new $.fn.dataTable.Editor({ ajax: { url: "../../" + EDITOR_DIR + "/controllers/dview-stock_holdings-1.01.php", data:
- 30th Dec 2020Can I read an entire table in the postEdit event that updates a row?you would use jQuery ajax(). Then use the success
- 29th Dec 2020Edit cells with a modal / Display all data on a rowto use a jquery ajax() request to perform server
- 29th Dec 2020if empty => take today's datedid you replace the ajax option in your Editor
- 24th Dec 2020Further explanation of result from another postingThis should give you an idea. The ajax call is to a SharePoint list that I can't link to. http://live.datatables.net/pilojeya/1/edit
- 24th Dec 2020core.js:6014 ERROR TypeError: Cannot read property 'ordering' of nullto respond to the Ajax request. One issue may
- 23rd Dec 2020initComplete fires before the table is complete?is that without the ajax option the DataTables initialisation
- 22nd Dec 2020Why error '_DT_CellIndex' error on reload of exactly same table?by the server use ajax.dataSrc (above), or use ajax as a function (below).
- 21st Dec 2020Reload/refresh table after eventChanged to this and still not refreshing. function rejectuser(id) { $.ajax ( { type : "GET", url: 'reject.php', data: {id:id}, async: false, success : function(data) { $('#sitesTable3').DataTable().ajax.reload(); }, error: function (jqXhr, textStatus, errorMessage) { alert("error!"); } } ) } What did I do wrong?