Search
18435 results 2851-2860
Forum
- 29th Jul 2011coloring a row (ajax data)-- edit -- nevermind
- 8th Jun 2011Defered Rendering with Local Ajax sourceJust a correction on the size of the local data file The local data file is approximately 16 MB with approximately 250K( not 21K records as reported earlier) records. Regards Joson
- 28th May 2011Dinamic file ajaxThanks this works fine.
- 13th May 2011DataTable inicialization with AJAXHi Again, sorry for ma question, i have found that instead of sending aaData: [{column_name:column_value}] i need to send only aaData: [{column_value}] I will try it and send notice if it solve my problem. Sorry again, hope that it doesn't waste your time so much. Lukas
- 18th Feb 2011ajax source remove tr onclickok i found : ) http://www.datatables.net/examples/server_side/select_rows.html
- 16th Oct 2010Problem with ajax and backslashRun your JSON through http://jsonlint.com - that will point out where any errors might be. Allan
- 8th Oct 2010[DT 1.5.6] AJAX, still "Loading..."Hi Martin, Is sEcho being passed back as is sent from DataTables? (you need to cast it as an integer for security reasons though!). Also iTotalDisplayRecords looks wrong. Unless you have a filter applied, it should be the same as iTotalRecords. http://datatables.net/usage/server-side . If that doesn't help, can you link to an example please? Allan
- 14th Sep 2010Programatically loading AJAX dataMaybe you can just enclose the dataTable drawing in another function an execute that function on buttonclick??? function foo() { qtable = $('mytable').dataTables(); } $('button').click(function() { foo(); } ... Just an idea... :)
- 19th May 2010get the "Processing..." progress bar to appear on first ajax loadAllan, What do you mean exactly by a custom processing element embedded in your HTML? Where exactly should this div be placed for it to generate in the same location as the Data Tables Processing Div?
- 27th Apr 2010IE7 table rendering AJAX dataHi, I've worked this out now. In my server side handling page I had a few lines of whitespace at the top. IE 8 and firefox handled this, but IE7 looses the plot if there is white space before the JSON data. Supressing the whitespace fixed it.