Questions tagged [datatables-1.10]

DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, and will add advanced interaction controls to any HTML table.

DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, and will add advanced interaction controls to any HTML table.

DataTables 1.10 is all about making it easier, for yourselves, the developers using DataTables, to produce high quality interactive tables for your end users. A detailed list of the new features is available including:

  • New flexible API
  • New styling options
  • camelCase notation
  • HTML 5 data-* attributes for orthogonal data
  • Currency, percentage and formatting number sorting support
  • Enhanced paging control
  • Improved accessibility

Source: http://datatables.net/

813 questions
5
votes
1 answer

Expanding and collapsing child rows in Shiny DataTable

I'm having trouble replicating a datatable object in Shiny. Currently, I can display what I want when I run the data table portion of the code outside of a Shiny environment. However, when I run the entire code, it's not displaying the child…
Jeff Zhou
  • 51
  • 1
  • 2
5
votes
1 answer

DataTables Infinite Scroll in 1.10

After updating DataTables to 1.10, bScrollInfinite was replaced by new extension Scroller. Problem is that Scroller is working with virtual scrollbar within table's div. I want to create simple (I know, infinite scroller has lot of troubles)…
AndrejJanoga
  • 51
  • 1
  • 3
5
votes
10 answers

How to Export Multiple Row Headers in jQuery Datatables?

Hi I am using jQuery Datatables 1.10. I am trying to export Datatable multiple header rows but not getting. But it is Exporting only second header row. I am using Buttons: buttons: [{ extend: 'excel', header: true }, { …
indu
  • 1,057
  • 2
  • 9
  • 15
5
votes
1 answer

Enabling custom button (disabled by default) when row is selected

I have a DataTable displaying data for Branches with two custom buttons defined: Add and Update. They are initialized at the top of the Javascript section var buttons; var tblBranch; $.fn.dataTable.ext.buttons.add = { className:…
Alycus
  • 221
  • 1
  • 4
  • 15
5
votes
5 answers

DataTables image (or at least image title) export to PDF

Using DataTables and Buttons (NOT TableTools, which is retired) extension. Some cells have progressbars and small icons. Is there a way to export these images (or at least their titles) to PDF? Found some possible hacks on this page, but all of them…
Mindaugas Li
  • 1,071
  • 5
  • 15
  • 37
5
votes
2 answers

Datatables.net ajax reload loading message

On initial load of my datatable via ajax, the table shows no data and 'Loading...' appears in the table body. On DataTable().ajax.reload(), the 'Loading...' text is not present. I know I can turn on the processing option to get the bar across the…
Malissa
  • 86
  • 1
  • 4
5
votes
1 answer

DataTables: Generate whole table from JSON

I am using jQuery DataTables and looking for a way how to generate DataTable fully from JSON. This should include the number of columns, their names, row data, but also may include other settings like sorting. I've seen this is possible, but among…
Peter G.
  • 7,816
  • 20
  • 80
  • 154
5
votes
1 answer

Save values of inputs in child rows - DataTables

I have responsive DataTable in Form. DataTables generate child rows on small devices. In this rows I have some Input controls. And that causes two problems. First problem:** Values from hidden child rows does not get into Form data.** Second…
Daniel Treml
  • 75
  • 1
  • 6
5
votes
1 answer

Determine if DataTables is done in version 1.10. Is there a callback?

How can I determine if DataTables() is done rendering in version 1.10 and above? Is there a callback somewhere I can set to a function. I'd like to hide my table until DataTables is finished and then reveal it once it is done loading. With version…
user49438
  • 889
  • 7
  • 20
5
votes
3 answers

How to group multiple columns in jquery datatables

How to collapse and expand the table based on multiple columns grouping. For example I have table like this --------------------------------------------------------------- location | size | cont_no | price | depot | cond …
Jonathan John
  • 195
  • 2
  • 4
  • 12
5
votes
4 answers

DataTables columnFilter number-range filtering

I have database where in column "BIRTH_DATE" there is date (for example 2015-06-26). I use DataTables to display information for users. I want to make number range search. But when I am using DataTables plugin ColumnFilter and try to use…
hockeyman
  • 1,141
  • 6
  • 27
  • 57
5
votes
2 answers

DataTables rowReordering after serverSide processiong completed

I'm using a DataTables in my web page where it loads content from the server Server-side processing, and I want to add rowReordering jquery-datatables-row-reordering functionality to it. This is how I tried it before. $('.data_table').dataTable(…
A.M.N.Bandara
  • 1,490
  • 15
  • 32
5
votes
1 answer

jquery datatables: columnFilter() is not a function error

i am using Data Tables with custom server side filtering, search and sorting... why is the columnFilter() returning an error "TypeError: $(...).DataTable(...).columnFilter is not a function" here is how i use columnFilter: var table =…
Christian Burgos
  • 1,572
  • 9
  • 26
  • 48
4
votes
1 answer

DataTables MVC on Postback the data is null

I was using MVC table to initially display the data to the user but because the data was quite large and started throwing storage out of memory exception, i decided to switch to DataTables. The data is displayed fine but on the postback, no data is…
Baahubali
  • 4,604
  • 6
  • 33
  • 72
4
votes
1 answer

Datatable unable to export updated checkbox values in excel as 0 or 1, alway showing the initially checked values only

Trying to download Datatables, able to get 0 or 1 values for checkboxes (for one of the column fields "Verified") initially, but when I am toggling the checkbox and exporting as excel, unable to retrieve the latest check box values. Initially I…