Search
10116 results 4181-4190
Forum
- 10th Feb 2012Confirm delete?Something like this would allow you to do the confirm: [code] $('#delete_row').click( function () { if ( confirm( "Are you sure you want to delete the selected rows?" ) ) { $.ajax( { "url": "/delete_row.php", "data": { "ids": selectedIds }, "dataType": "json", "type": "post", "success": function () {...} } ); } } ); [/code] Allan
- 9th Feb 2012Reusing a table with server side processingFYI - the Ajax URL changes every time. So, I set it prior to displaying the dialog: var settings = $('#index-query-results-table').dataTable().fnSettings(); settings.sAjaxSource = "index/dataTable/" + indexName + "/" + indexHandle;
- 6th Feb 2012Server-side Processing adding datacode] $.ajax({ type: "POST", url: "load_perfil.php", dataType: 'json', data:
- 3rd Feb 2012Filtered from Value Greater than Total Number of Entriesvariables sent via the URL.
- 2nd Feb 2012using AJAX POST to fill my datatabledo you set the URL to call your webservice?
- 2nd Feb 2012Suggestion: fnRowDataCallback to fetch the row datadataType": 'json', "type": "POST", "url": sSource, "data": aoData, "success":
- 1st Feb 2012How to pass parameters for ajax callwhat is the actual URL used Also will the
- 31st Jan 2012Multiple TableTools on Multiple tables using alternate initialization not working, lone tables work.me is the absolute URL. I'd suggest making that
- 30th Jan 2012How to initialize DT to be the equivalent of a Swiss Army Knife.sSource, aoData, fnCallback) { $.ajax({ "url": sSource, "data": aoData, "success":
- 26th Jan 2012301 error with Ajax Sourcejust use a relative URL: / Allan