FixedColumns and extra data
Datatables and its plugins and extras are really great. In order to navigate from the table to some detailed page, I added a hidden column with a URL for each row and a click event listener in the...
View ArticleUsing fnOpen with selector toggle - what am I doing wrong?
The following code works by clicking on the TR to extend another TR with any data. Great! But when I change the $('#example tbody tr').click() selector to something more specific in such as '#example...
View ArticleServer side processing with vbscript
Hi everyone. I am using datatables in classic asp. I would like to use server side processing for loading the table with data. I found this link and...
View ArticledataTable not loading aaData parameter
So the table is on the page <table width="100%" id="ticketListTable" class="genmed"></table> I then use AJAX to return the data $.ajax({ type: 'POST', url: "ticketAjax.php", data:...
View ArticleAdding buttons before "records per page" drop-down
Hi, I am new to DataTables and still trying to understand sDOM settings. I wanted to add two buttons just before the "records per page" drop-down menu, in the same line on the left-hand side. I am...
View ArticleDatatables with twig
Hi everyone, I have a symfony2 project with twig as template engine. I'm developing my CRUD pages with datatables 1.9.x. I'm using it to display all records and in every row I'm adding non-database...
View Articlewebbrowser control strips "&" character when invoking...
Hi, I'm using v1.9.4. When running the code in any browser, everything is fine, but when running the code inside our .net I.E. webbrowser control (versions 8, 9 or 10) the "&" character is being...
View Article[urgent] Support request for date range filtering
Hello, We previously worked out this solution. However I noticed you have added quite a bit of functionality to the latest release. Is there a better implementation than what is here:...
View ArticleInit datatables on nested tables with fnIsOpen
Hey Alan, I find that when I put a second init of datatables for the nested table container I don't see the datatables script applied to the nested tables. Is this due to the fact that the nested...
View ArticleBad sorting "sType": "html" on Android device
My initialization: $(document).ready(function() { $('#example').dataTable( { "sPaginationType": "full_numbers", "bStateSave": true, "aLengthMenu": [[10, 30, 50, 100,-1], [10, 30, 50,100, "All"]],...
View ArticleOnly one tabletools button works.
$(document).ready( function () { $('.display').dataTable( { "bJQueryUI": true, "iDisplayLength": 50, "sPaginationType": "full_numbers", "sDom": '<"H"lfTr>t<"F"ip>', "oTableTools": {...
View ArticleUncaught TypeError: Cannot read property 'className' of undefined
when apply DataTables to the table with a row 'colspan = 7' below, an Error occured: Uncaught TypeError: Cannot read property 'className' of undefined. (I have try it in "DataTables live" and debugger:...
View ArticleUpdate TypeError: Cannot set property '_aData' of undefined ( +...
Hi everyone! I've just started using the DataTables 1.9.4, and found this issue on a (possibly) simple thing for you. If you run this code on this page, http://jsfiddle.net/HEDvf/524/ , you will get...
View ArticleSorting on the decimal values are not working
I have created the table with the data table 1.9 but my sType": "formatted-num" is not working for me i have created jsfiddle http://jsfiddle.net/hALDK/19/ The column Header BRR is not sorting. i am...
View ArticleProblem when single record returned
I couldn't find an answer to my particular problem but basically, dataTables seems to be puking when my service call returns only one record. I see the JSON response to the request and it looks valid...
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 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 ArticleModifying total in the footer after user used searchbox
I have created a datatable and displaying total of some columns in the footer using fnFooterCallback function. Now the issue is that I want to recalculate the total value after user puts some serach...
View ArticleFixed Column Datatable with Select Tag
Hi All, I am new to Datatables. I am trying to achieve Fixed Column Datatable with Select Tag FixedColumn - http://datatables.net/release-datatables/extras/FixedColumns/two_columns.html Select tag -...
View Article