Search
18456 results 10271-10280
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
- 7th Feb 2012Documentation error for mDataPropDOM or Javascript arrays / Ajax. Should I expect it
- 6th Feb 2012Server-side Processing adding datamy problem using an ajax call with a simplified
- 3rd Feb 2012Bootstrap 2 w/ Datatables 1.9 - Tweaks neededI'm afraid. Is it Ajax loading data? Enable the
- 3rd Feb 2012fnInitComplete - exists or just a myth?aren't doing an async Ajax call then cTable wouldn't
- 2nd Feb 2012Datatables , jeditable and jquery timepicker in Zend Framework ,fnupdate unable to update old valuethe above code on ajax request as a response
- 2nd Feb 2012Suggestion: fnRowDataCallback to fetch the row datathe asynchronicity of the Ajax call, if your goal
- 1st Feb 2012how to sort fractions?alternative is to use Ajax and mDataProp to provide
- 1st Feb 2012Access JSON response objectto provide your own Ajax call or listen for
- 31st Jan 2012How to delete a row on client-side only with data from server-side?Yes - don't use server-side processing! It sounds like you want to Ajax load and client-side process: http://datatables.net/release-datatables/examples/data_sources/ajax.html . Allan