Search
23679 results 2871-2880
Forum
- 7th Aug 2014Asc/Desc tooltip on sorting columns along with Headers nameFull code $("#resultstab").dataTable({""bProcessing": true, "bPaginate": true, "bLengthChange": true, "bFilter": false,"bSort": true, "bInfo": true, "bAutoWidth": false, "sPaginationType": "full_numbers", "fnDrawCallback": function() { $('th').each(function(){ if (($(this).hasClass('sorting')) || ($(this).hasClass('sorting_desc'))) { $(this).attr({title: 'Sort Ascending'});} else { $(this).attr({title: 'Sort Descending'}); } }); }});
- 5th Aug 2014columns calculated, which sample recommend learn?check this for SUM http://datatables.net/examples/advanced_init/footer_callback.html
- 22nd Jul 2014Searching across multiple columns not workingWorks perfectly. Thanks
- 19th Jul 2014How to config columns where data source is 1D arrayWhat trouble are you having? Do you get an error? Can you post a live.datatables.net demo?
- 9th Jul 2014Custom filtering function for columns with the 1.10 API?Currently no - but that is a very nice idea. Filtering is DataTables weak spot (now that the API has been sorted out) and a method like this would really help. I've added it to my ideas list for filtering. Allan
- 26th Jun 2014Fixed columns, when applied along with pagination is not working in IE8 with datatable 1.10 version?Here the live link for the above example: http://live.datatables.net/roqeref/1/edit
- 19th Jun 2014Datatables columns not resizing properlyI swore that I tried that prior to posting this question, but lo and behold this fixed my issue..thank you!
- 2nd Jun 2014Using bootstrap, when editing columns, label appears?Thanks Allan, worked perfectly. My head was in a totally different direction, didn't even consider using CSS to just hide the elements! Cheers;
- 25th May 2014Right side border with fixed columns and no scroll barYou could use div.DTFC_LeftBodyLiner { border-left: 1px solid red; }. You might need to also add box-sizing: border-box although there is a risk of the column widths getting slightly misaligned by that. Allan
- 20th May 2014columns load in different sizeas I implement in my code? I tried to enter inside the loop, but I could not, I guess I'm not seeing right code so already shifted ..