Search
18451 results 6211-6220
Forum
- 2nd Apr 2019Converting datepicker to unix timestampEditor: editor = new $.fn.dataTable.Editor( { ajax: "ajax/kapa.php", table: "#set_kapa", fields:
- 2nd Apr 2019No update after create/edit a tablesuggest you do this: ajax: { url: 'ajax/tzug.php', data: function
- 30th Mar 2019Page Refresh Problemsearches. Search filter sends ajax request on every keypress
- 30th Mar 2019Angular 2 / 4 Server Side Processing for Datatables not displaying dataserverSide: true, processing: true, ajax: { url: this.baseUrl + '/getPaymentHistoryPagination', type:
- 29th Mar 2019Unable to Get Exact Match in datatableNo records to display"}, ajax: 'logapi.php?query=query_02', fixedHeader: true, //scrollY:
- 27th Mar 2019Posting Additional Fields To The ServerUse ajax.data to post extra data to the server (example) and then use ajax.reload() to trigger a reload of the Ajax data. Allan
- 27th Mar 2019How to get the value of only the first column of the selected rows?function () { var selectedData = table.rows('.selected').data(); alert(selectedData); var selectedData2d = array2dToJson(selectedData, 'selectedData'); var selectedDataStr = JSON.stringify(selectedData2d); $.ajax({ url: 'test3.php', type: 'post', data: {selectedData: selectedDataStr}, success: function(response){ result = $.parseJSON(response); $('#result_form').html(result.data); } }); }
- 26th Mar 2019Submit selected in PHPwith the data. Use $.ajax or similar to submit
- 26th Mar 2019Paging not showing correct number of pagesWe added this to the end of the ajax call since it wasn't getting set in the initial data set: e.iTotalRecords = e.totalRows; e.iTotalDisplayRecords = e.totalRows; All works as it should now.
- 26th Mar 2019How to get checkbox visibleNot sure but jquery-3.2.1.slim.min.js might not contain jQuery ajax method. You should load jquery and all other JS files only once. Try removing jquery-3.2.1.slim.min.js and move jquery-3.3.1.js to the top. Kevin