Search
18437 results 8091-8100
Forum
- 24th Jun 2016Known issues with Keytables not working using an ajax-sourced table?The table in this example is ajax sourced and works okay with KeyTable. If you link to a working test page showing the issue I'd be happy to take a look into it. Allan
- 24th Jun 2016.data().toArray() returning empty arraythe code. You are ajax loading the data, which
- 23rd Jun 2016Is the JSON illustrated valid for DataTablesdocument).ready(function () { var oTable = $('#tblData').dataTable({ "ajax":{ "type": 'POST', "url": "svc.asmx/GetRecords",
- 22nd Jun 2016Fatal error Allowed memory limitprocessing: true, serverSide: true, ajax: { url: 'php/table.php', type: "POST" } Last edit, setting POST seemed to work for my case. Thanks Allan.
- 22nd Jun 2016Inlineediting functionalityalert("jjj"); editor = new $.fn.dataTable.Editor( { ajax: "hello.do?method=getJson", table: "#example", idSrc:
- 21st Jun 2016Cannot read property 'length' of undefined while data existssector }; //query parameters $('#main_data').dataTable({ ajax: { url: "AddGDP.aspx/GetMainData", type: "POST",
- 20th Jun 2016Error: Cannot read property length of undefineddata was structured [CODE] $.ajax({ type: 'GET', url: '../InventorySite/services/ArchivedAll.asmx/GetArchivedAll',
- 20th Jun 2016Buttons - copy, excel etc not shownscrollCollapse: true, paging: false, ajax: "/ajax/eventtype.php", columns: [ { data: "refeventtype.ListOrder",
- 18th Jun 2016CUSTOM BUTTON OPEN POPUPHere it works... buttons: [ { Extends: "ajax", text: "Nuovo PDF", action: function ( e, dt, node, config ) { window.open('pdf_conv_bon.php?sumdare=&sumavere=','mywindow','width=1200,height=1200,left=200,top=200,screenX=0,screenY=100'); }
- 17th Jun 2016How to keep the current value in select input type while adding other optionsI added the following codes in open/edit event. It seems to work as I wanted. $.ajax ({ type: 'POST', url: '/myPayers/GetInsCoLst', dataType: 'json', success: function (data) { editor.field('insCo').update(data.options.insCo); } }); if (data.insCo.val != NULL) { editor.field('insCo').update(data.options.insCo); }