Search
43891 results 7001-7010
Forum
- 17th Jan 2014Multiple tables on one page, sort/search only working in the first tableHi, Are there any console messages logged when you attempt to use the 2nd and 3rd tables? Maybe post a link to your page so the JS is exposed to the community.
- 8th Jan 2014Issue with fnStandingRedraw - unable to select any table row after calling itAh - are you using server-side processing? In which case yes, fnStandingRedraw will execute and return before the new data has been loaded. You could use the draw event to cope with that: [code] $('#myTable').one( 'draw.dt', function () { // ... add classes etc } ); oTableLocal.fnStandingRedraw(); [/code] then the event handler will fire on the next draw (i.e. when the data has loaded). Allan
- 2nd Jan 2014Save Table Contents To ServerYou can make another button that takes all the datatable's data then ajax it back to the server, however i am not sure how well it will work if you are doing pagination.
- 10th Dec 2013how to alter Table tools Pdf export font sizeYup :-)
- 3rd Dec 2013Table Tool IssueSounds like the SWF file isn't being loaded. Use sSwfPath to point at the correct path: http://datatables.net/release-datatables/extras/TableTools/swf_path.html . Check the console in your browser and server error log to confirm if this is the case. Second, my guess on the lack of images is that they are not coming across. What images and where are they not going to? Can you please link to the page so we can debug it. Allan
- 2nd Dec 2013Table Tools - export buttons not triggering save as dialog in Firefox/WindowsIt works after installing latest adobe flash plugin
- 2nd Dec 2013data table search use AND instead of ORhey thank you for the responses and my apologies for that implicit ignoring of the rules. I couldn't post a screenshot/sample because it is behind a company wall and can't be accessed. I hhave now learned that there are other pages where the filtering works just fine on the basis of AND. the pages where datatables do OR filtering have been manually tweaked to have OR filtering instead of the (default) AND. I just need to know where do I put that back from OR to default AND. cheers,
- 24th Nov 2013table tools csv excel pdf buttons not workingAs always, please link to a test case showing the problem. Your code looks fine, so we'd need a link to the page to be able to stand any chance of being able to offer any help! :-) Allan
- 22nd Nov 2013Naming a table when using use strictyeah, that does it ;)
- 22nd Nov 2013Following table design possible? Server Side ProcessingYup - looking at that script, it looks like there isn't the str_replace that would be needed for the space to be correctly handled. To be honest, I would recommend forgetting that script and using one for objects instead: https://github.com/DataTables/DataTables/blob/master/examples/server_side/scripts/objects.php . Use mData as described in the blog post I pasted above, then you don't need to use space in the column list at all. Allan