Search
288 results 251-260
Forum
- 23rd Feb 2015sort on dates not working properly after upgrade to 1.10.5empty table with regular thead, containing a column named
- 12th Feb 2015bootstrap css and scrollY option cause duplicate sort icons on the first rowI was having this same issue. I fixed it by adding the following css. .dataTables_scrollBody thead {visibility: hidden;} {visibility: collapse;} also seems to work. Here is a link to your fiddle with the above css applied. http://jsfiddle.net/c8dqaz1s/
- 11th Dec 20142 rows in header: 1 for labels and sort, 1 for column searching (select inputs)...var api = this.api(); $('#LoM1 thead tr#forFilters th').each(function(i) { if (i
- 5th Nov 2014Multiple sort icons using JQueryUIthe following lines: table.dataTable thead .sorting { /background: url('../plugins/dataTables-images/sort_both.png') no-repeat
- 27th May 2014Scroll X creates additional blank table heads with sort arrows in themdiv.dataTables_scrollBody thead th, div.dataTables_scrollBody thead td { line-height: 0; opacity:0.0; width: 0px; height:0px;
- 29th May 2013sScrollY and thead width issueIt's only fail at the start, if I click in the header to sort, the header width is correct
- 18th Jan 2013fnSort binds to "sort" event and to "filter" event?a click handler to thead: [code] $("#tableDiv").find('thead').click(function() { console.log("sorted"); }); [/code]
- 17th Mar 2012Two rows in thead, first row for sorting, second row for column filteringhttp://datatables.net/upgrade/1.8 - you can use the bSortCellsTop option to apply the sort listener to the top cells in a column. Allan
- 8th Feb 2012Vertical Scrolling containing Inner table with thead tag gives JS ErrorHmmm, weird. It breaks when IE9 is set in compatability mode. But it works in straight IE9 mode. Click the compatibility mode button in IE9 and you'll see the example will no longer sort.
- 2nd Aug 2011Dropdowns in thead?there's an initialization variable called bSortCellsTop (http://www.datatables.net/ref) that tells DataTables to use the top TH row as the row to sort when clicked. Try that and see if that helps.