Search
43891 results 7061-7070
Forum
- 22nd Aug 2012Possible bug: IE8 won't show table: "'aTargets' is null or not an object"Argh! Thanks, Allan, you nailed it!
- 14th Aug 2012mData for mapping DOM Table vs JSON due to tool generated tables having additional info inExports as in the files created by TableTools, or something else? If TableTools, then you can use http://datatables.net/extras/tabletools/button_options#fnCellRender to manipulate the string before it is exported. Allan
- 3rd Aug 2012Sorting Dynamic Table Data with Empty CellsI've posted my debug data if anyone could help :) Code: oveyak
- 19th Jul 2012Table Tools messages won't displayIt look alike you are using an old version of TableTools: TableTools 2.0.1 A new version (2.1.2) is available. TableTools 2.1 is where the nice new styling was applied :-). There is one thing to mention, TableTools 2.1.2 has a bug in it with the 'collections'. This has been fixed and is available in git, but I've not yet released the fix. I hope to do so in the next few days now that I'm happy the issue has been addressed. Regards, Allan
- 12th Jul 2012Edit a single column in Row in Data tableThe link shows client-side processing rather than server-side, however the principle is the same for both. Also you don't have to use KeyTable - you could have a double click event on a cell that will bring up the Editor dialogue for that cell. Allan
- 26th Jun 2012Table Tools example as in extras Not workingWere you load the files through a web-server or file://? If the latter you need to set up a security exception for Flash to allow the movie to play sine it is running from your local file system. I'd suggest trying to get it going through a web-server. If that doesn't work, give us a link to the page. Allan
- 19th Jun 2012continuously updating table contents with server-side processingI may be wrong, but you can probably set up a timer function to call: oTable.fnDraw() at specified intervals. Something like this: $(document).ready(function(){ window.SetInterval(oTable.fnDraw, 5000); });
- 11th Jun 2012How to set classes to table row cells (but not to table header cells!)Ok i found a workaround: useing fnRowCallback instead od sClass to set the correct classes to new rows
- 30th May 2012More than one Pagination in same tableLook at this: http://datatables.net/plug-ins/pagination There is specifically a select list option.
- 3rd May 2012Small bug on demo table (csv change to cvs on 2.0.3)Doh! Thanks for picking that up and letting me know about it. Its now fixed :-) Allan