Use default cursor when sorting or pagination links are disabled
Hi Alan, Just a quick CSS update to use the default cursor when sorting or pagination links are disabled: 18a19,23 > table.dataTable thead th.sorting_disabled { > cursor: default; > *cursor:...
View ArticleAnother sSearch_n question ...
Hi! I'm having an issue where the search values from two different columns are being sent in the same sSearch_n parameter. This had been working so I've undoubtedly broken it with recent changes. I've...
View ArticleDon't user aaData
Hi all, I have this class: function Clazz() { this.id; this.description; } Clazz.prototype._findAll = function(_callback) { $.ajax({ type : "GET", url : "api/route", dataType : "json", success :...
View ArticleUsing fnDeleteRow removes wrong row after 1 or more rows are deleted.
Version: 1.8.2 I am using datatables and allowing the user to remove row dynamically. However, I have ran into the issue that if you delete from the top down, row 0 being the first row index. The wrong...
View ArticleDisable/Enable New/Delete buttons based on user permissions/interaction
Hello, I'd like to enable/disable the Editor's New/Delete buttons based on user interaction and permissions (e.g.: if user has certain access level he can add or delete records from DataTable) Is there...
View ArticleDisabling autoincrement in AutoFill extra
1. In *.js file find this pattern - "return a.sStr.replace(e,b+a.sPostFix)" 2. Replace with this one - "return a.sStr.replace(e,a.iStart)" It will disable autoincrmenet permanently. In case you are...
View ArticleSolution::for Ajax autoload
Hello, I solved the problem with ajax autoload by applying this 'hack'. $(document).ready( function() { $(window).bind('focus', function() { oTable.fnFilter('',0); }); }); Now when user triggers...
View ArticleWIA-ARIA usage in tbody
Can someone explain the logic behind using role="alert" and aria-live="polite" in the tbody tag? 1) The screen reader I'm using to test (ChromeVox plugin) tells the user that the content is an "alert"...
View ArticleRelative Widths on Columns when sScrollY is set
Hi, I'm new, but have had a big hunt around, and got the answer to most of my problems but not quite all. I have a table with relative formatting. My call is currently $("#products").dataTable({...
View Articlecolumn sizing and resizing
I have a fixed-width DataTable. I want to give the user the ability to switch this layout from "fixed" to "fit" layout. Is there a way to have datatable re-layout the columns without clearing and...
View ArticleSorting all bad for date format: April 1, 2013, 1 p.m.
data is coming from django queryset. its displaying it correct (the way I want it), but sorting is screwed up.. (looks like this after sort) April 1, 2013, 6:24 p.m. April 2, 2013, 12:26 p.m. March 20,...
View ArticleTable with two columns and the header row grouped
Hello everybody, I have the following JSON: [{id:1, description:Test1}, {id:2, description:Test2}, {id:3, description:Test3}] I want my table like this: |---------------------------| |My...
View ArticleTableTools - quick question
Has anyone seen the odd behavior on this page with TableTools? http://sf.amy-tyler.com/?page_id=81 It looks like something odd occurs to TableTools after the theme is applied to the table....
View ArticleDataTables Column Filter Add-on - Problem with hidden columns
I've seen several generalized discussions about problems with column filtering and hidden columns but none relating specifically to using the plug-in. I have a working example of this at:...
View Articleproblem after recreate
It seems like I can't find a proper way to destroy Datatable. When I click on it, I get so much onclick events as how many times Datatable is recreated. Put this in /examples/data_sources/ajax.html:...
View ArticlePrevent column stretching
I have a table in which the number of columns is dynamic; it could be 2 columns or 100 columns. Is there any way to prevent the column widths from stretching? I hope to avoid having to declare a fixed...
View ArticleDate Range Filtering
Hi Allan, I am going to be needing a filtering option for dates. I found this : http://jquery-datatables-column-filter.googlecode.com/svn/trunk/dateRange.html Is that plugin still being supported by...
View ArticleMany tables on a single page - performance issue
Hi All, On my page I render multiple tables. DataTables are optimized for many rows, but in a single table. In case of having multiple tables on a single page (e.g. 13) it can be quite slow I found two...
View Articlefully custom filtering
I want to implement fully-custom filtering, but as far as I can tell the only custom filtering options are hamstrung in strange ways: - I can implicitly change the behavior of per-column filtering by...
View ArticleTableTools and Hidden Row Details
The following example shows how to show/hide row details with +/- icons. http://datatables.net/release-datatables/examples/api/row_details.html Very cool use of TableTools. I used it in my first ever...
View Article