Search
18435 results 9011-9020
Forum
- 20th Jan 2015Hoping to make the shift to ServerSide, but unsure of how to keep my formatting.want to consider using Ajax loaded data with deferred
- 20th Jan 2015EDITOR QUESTIONquestion is, does your Ajax POST request get triggered?
- 19th Jan 2015initialize dataTable does not workvar url = baseUrl + "../WebServices/ProjectManagementServices.svc/GetAllProjects"; $.ajax({ type: "POST", url: url,
- 19th Jan 2015Inline editing code confusions@yhangel.07 - You would change the ajax address to whatever the URL is for where you want DataTables (and also possibly Editor) to make the Ajax request to get the data. Allan
- 18th Jan 2015row.add() and DT_RowID with dom table?help me i have: $.ajax({ url: "tratarGestor.php?acao=inserirCat", type: "POST",
- 17th Jan 2015Getting Selected row/rows DatasSwfPath": "media/swf/copy_csv_xls_pdf.swf", "aButtons": [ { "sExtends": "ajax", "bSelectedOnly": "true", "sAjaxUrl" : "index.php/welcome/insert",
- 17th Jan 2015Okay I'm trying to get this to work server side with what I have. help?processing": true, "serverSide": true, "ajax": { "url": "../includes/views/DetailsTableJSON.php", "type": "POST"
- 16th Jan 2015cant load json data - Uncaught TypeError: Cannot read property 'length' of undefinedThank you very much Allan, now load the json file correctly, this is the final script: $('#example').dataTable( { "ajax": { "url": "js/notice.json", "dataSrc": "noticeArray" }, "columns": [ { "data": "title" }, { "data": "id" }, { "data": "subtitle" }, { "data": "urlImg" }, { "data": "urlImgXl" }, { "data": "detail" }, { "data": "type" }, { "data": "info" } ] } );
- 15th Jan 2015Updating Select list in Editor popup containerfor example: $( "#refresh" ).click(function() { $.ajax({ type: "POST", url: "lib/title_test.php",
- 15th Jan 2015Join tables - one-to-many join on 1 tables and one-to-one join on anotherThe page linked to above doesn't use ajax.dataSrc - it simply uses dataSrc, which is not a parameter DataTables knows about. As per the ajax.dataSrc documentation examples you want something like: $('#example').dataTable( { "ajax": { "url": "database/connections/attendance.php", "dataSrc": "" }, ... } ); Allan