Search
11152 results 1211-1220
Forum
- 7th May 2014sort some tables on page by number of rowsDataTables does not provide options to arrange multiple tables in a document. It could readily be done with a little bit of jQuery manipulating the DOM though I'm sure. Allan
- 29th Apr 2014Secondary thead with sort icons?Thank you for the help allan! That fixed it 100%, and I will let those guys know that this needs to have a small fix in the theme too. Thanks again, Neeks
- 24th Apr 2014sort on only part of the columnsThis has been answered many times in here. For instance: http://datatables.net/forums/discussion/2654/how-can-i-make-a-column-non-sortable/p1
- 2nd Apr 2014Trying to load once via ajax from server and then sort and filter on client side.It was something simple. The iDisplayLength parameter was being tested for -1, but was being handed a 0. The ajax handler was expecting pagination parms and when the query asked for 0 records, that's what it got back. Thanks!
- 28th Mar 2014How do I make DataTables not sort the table on page load?That works great. Thanks so much.
- 19th Mar 2014Adding Charts inside datatables with sort feature.what you mean? For sorting one data point and
- 16th Feb 2014Sorting values with currency symbol sort by symbol rather than amountOk, I just asked because I was using a script before that had to have a converter to make it work on the latest javascript code.
- 1st Feb 2014Added FixedHeader and can no longer sort columnsLooks like you are loading DataTables twice on your page for some reason. The second one is overwriting the first, which has FixedHeader attached to it. Load it just once. Allan
- 23rd Jan 2014No DataTable wrapper, no DTT_Container, no length, no filter, no sort when users logged outThe culprit was a recent change I made from [code]"bSortable": false, "aTargets": [ 2 ][/code] to this [code]"bSortable": false, "aTargets": [ 2,3 ][/code] When logged in, the user can view 4 columns. When logged out, the user can only see 3 columns. So when I changed bSortable such that the fourth column should also not be sortable the above-mentioned problems occurred. Problem resolved.
- 5th Sep 2013Multiple Headers: Filter enabled with Sort DisabledAllan thanks, a definite nice-to-have. I actually can break the headers out into matching columns; in fact, I tried that, but filter functionality still does not work. Suspect the issue is that perhaps the library is unable to filter/collapse a single datatable with multiple separate header rows. What would work is to have a single datatable per header row and corresponding filter input field, but that's far less elegant than a single filter input being able to drill down through multiple header rows and corresponding data. I'll live regardless ;-)