Search
290 results 251-260
Forum
- 6th Apr 2015Sort one column w/ valuefunction () { var title = $('.mainTable thead th').eq( $(this).index() ).text(); $(this).html(
- 30th Mar 2015FixColumn adding unnecessary theadIt appears like the sort icons are causing the
- 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