Search
10251 results 3851-3860
Forum
- 16th Jul 2014Inline editing on a DOM sourced table6 } ], ajax: function ( method, url, data, successCallback, errorCallback ) { ... } }); // Activate
- 15th Jul 2014How do I save encoded password entries when using DataTables Editor?HERE. dom: "Tfrtip", ajax: { "url": "php/manageusersEditor.php", // PHP CODE FOR
- 15th Jul 2014Row disappears after I edit the tableajax: "DataTables-1.10.0/extensions/Editor-1.3.1/examples/php/project.php?UID=<? echo $UID ?>", I had to put a variable in the URL that I was sending to the AJAX page. My fault, thanks Allan.
- 14th Jul 2014ServerProcessing and local ajax search using DataTables 1.10I think I got it working after digging into the docs: "processing": true, "serverSide": true, "ajax": { "url": "scripts/recommendations_processing.php", "data": function (d){ d.cid = $('#committee_one').val(); d.mid = $('#ministry_one').val(); d.sid = $('#sector_one').val(); } },
- 10th Jul 2014scrollX show header twice when getting data through server side (bServerSide='true')type: 'POST', dataType: 'json', url: sSource, data: aoData, beforeSend:
- 7th Jul 2014Reload ajax with parametersWhen declaring the AJAX data fields use functions, for example: ajax: { url: 'url.php', type: 'POST', data: { dateDeb: function() { return $('#dateDeb').val() }, dateFin: function() { return $('#dateFin').val() } } }
- 7th Jul 2014Is there a way to email a datatable?rows.length - 1){ rowStr += ","; } } $.ajax({ url: "sendemail.php", type: "POST", data:
- 6th Jul 2014opening en closing child windowsHi, The link given was to localhost - could you possibly update it to a publicly accessible URL so I can take a look? Thanks, Allan
- 28th Jun 2014500 Internal Server ErrorWhats on the php side and if you directly type in the url /wp-content/themes/Divi-child/serverprocess.php does it return some json data?
- 28th Jun 2014mongodb bson to datatableI finally figured this out using DataTable not dataTable. Code below $('#exampletwo').DataTable({ ajax: { url: '/api/openports/may-srx-home/', type: 'GET', dataSrc: "", }, "columns": [ { "data": "Id" }, { "data": "IPAddress" }, { "data": "Port" }, { "data": "Protocol" }, { "data": "FirstSeen" }, { "data": "LastSeen" }, ] });