Search
18435 results 10021-10030
Forum
- 23rd Jul 2012Multi Select Row Deletevar abc = fnGetSelected( oTable ); $.ajax({ type: "POST", url: "delete.jsp",
- 21st Jul 2012Force question about external sourceYou are trying to do a cross domain Ajax request - browsers will refuse to do that for security reasons - see http://en.wikipedia.org/wiki/XMLHttpRequest#Cross-domain_requests . You can use jsonp to work around this. Allan
- 19th Jul 2012Jquery Data table is slowyou look at using Ajax sourced data with deferred
- 19th Jul 2012Add New, Edit, Delete ButtonsfnServerParams isn't a TableTools option, unless you've extended the text button to accept that? I don't think sAjaxSource is either actually. Basically you just need to make a plain old $.ajax() call inside fnClick :-). See: http://api.jquery.com/jQuery.ajax/ Allan
- 18th Jul 2012removing a row / redrawing table doesn't update row countthe server-side, through an Ajax call. If you aren't
- 18th Jul 2012Jquery DataTable for Customised data renderingDo you mean like this: http://datatables.net/release-datatables/examples/data_sources/server_side.html - server-side processing, requesting each page from the server when required Or like this: http://datatables.net/release-datatables/examples/data_sources/ajax.html - client-side processing with an Ajax data source, requests the full data set on page load. Allan
- 17th Jul 2012How to display returned records from JsonResult in MVC.Net?sAjaxSource": "test.aspx/DoProc", "fnServerData": function (){ $.ajax({ "type": "POST", "url": "test.aspx/DoProc",
- 17th Jul 2012Giving buttons an IDme though on doing ajax requests. [code] $( '#table' ).dataTable({
- 17th Jul 2012JSON data from server could not be parsed.I got it. delete all html code in ajax asp page. data access in newUniqueReportDataAjax.asp [code] [/code]
- 17th Jul 2012Adjust sScrollY after Initsolves the server processing ajax problem. Here's what I