Search
18452 results 8941-8950
Forum
- 12th Mar 2015Problem upgrading from 1.9.4 to 1.10.5id != 0) { $("body").css("cursor", "wait"); $.ajax({ url: "getquery.php?reqsql="+encodeURIComponent(val), dataType:'JSON', success:function(json){
- 12th Mar 2015Shown data in the Source?that it is a AJAX issue since the data
- 12th Mar 2015Cant fill datatableHere is an Ajax example. Instead of using plain JSON, you would simply use JSONP. Here is a server-side processing JSONP example - Note that unless you have 50k+ rows, you are unlikely to want to use server-side processing. Allan
- 11th Mar 2015Server side processing, URL too longBy default, datatables uses GET instead of POST. Try changing the type to POST: var table = $('#mytable').DataTable({ ajax: { url:"/my/url", type:"POST" } });
- 11th Mar 2015How to get number of rows (Editor)?Are you loading data via Ajax and then immediately calling page.info()? If so, recall what the first a in Ajax stands for :-). You need to use initComplete to wait until the data has been loaded. Allan
- 11th Mar 2015After update data data loads again in the grid. Editor.Datatablewill aways make an Ajax request if server-side processing
- 10th Mar 2015How do I remove the NEW button based on the record countTry this: $('#bnbdata').DataTable( { ajax: 'php/bnb.php', dom: 'Tfrtip', columns:
- 10th Mar 2015ajax.json() question, any help would be appreciatedcategoryId: cid, projectId: pid } $.ajax({ url: gbDataURL, data: JSON.stringify(model),
- 10th Mar 2015"Requested unknown parameter" error for different Editor instancesadder adder = new $.fn.dataTable.Editor({ ajax: "myEditor_Add.php", table: "#myWebTable", fields:
- 9th Mar 2015Data Loadingyou are setting the Ajax options via the defaults