Search
23679 results 2891-2900
Forum
- 21st Dec 2013how to filter the data tables columns using check box, price slider with dynamicallythanks for your quick response allan...
- 19th Dec 2013Adding row on top when sorting on columns are disabledThanks for your reply. aaSortingFixed option helped me. I just used a invisible column and on this i did the sorting. and that fulfill my requirement of adding row on top the table.
- 16th Dec 2013Weird CSV when there are non-breaking spaces in header columnsNo you aren't missing anything - its not a feature that TableTools currently has - but perhaps should! This s where it would need a modification: https://github.com/DataTables/TableTools/blob/master/media/js/TableTools.js#L1607 . Allan
- 10th Dec 2013Header columns are not aligned with the data columnsSorry for the double post, but on further review, this is occuring because I am rendering the table inside a DIV that is hidden, I have changed the order of my JS and everything is A-O-K! Excellent software you have written here Allan!
- 9th Dec 2013Delay columns containing imagesYes - in milliseconds. Good to hear it works for you :-) Allan
- 9th Dec 2013trying to create a plugin that would let you re-size columns and carousel horizontal scrollingso should i not work with sWidth at all ?
- 21st Nov 2013URL Links in Datatable Columns show up as text in IE 8Can you link us to a test page showing the issue please. Allan
- 30th Oct 2013Datatablesversion (1.9.3) columns are not aligned on Safari(5.1.7)I am having a similar issue on Safari 6.1 with Datatables 1.9.4. I posted a link to my test case in this issue http://datatables.net/forums/discussion/18036/column-widths-don039t-match-up-in-safari-6.1
- 28th Oct 2013Sort using 2 columns, one with specific values orderSounds like you need a sorting plug-in: http://datatables.net/development/sorting#type_based Allan
- 14th Oct 2013FixedHeader columns not lining upI am still having issues starting at the 4th column. This column has a set width with overflow:hiden since it is large. Here is a screenshot:http://i.imgur.com/e1L41RU.png Here is the main Jquery code: [code] $(document).ready(function() { $('#top-table').dataTable( { "sScrollY": 250, "sScrollX": "100%", "iDisplayLength": 50, "bScrollCollapse": true, bAutoWidth: false, "bPaginate": false, "aaSorting": [ [0,'desc'] ], "bSortClasses": false, "aoColumnDefs": [ { "sWidth": "10%", "aTargets": [ 3 ] } ] } ); } ); [/code]