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
46
votes
4 answers

Disable initial automatic ajax call - DataTable server side paging

I have a dataTable initialized with server side paging and it is working fine. This table triggers ajax, pulls data and renders onto the table during initialization. However I need empty table initially and load table data on click of a button using…
JavaYouth
  • 1,536
  • 7
  • 21
  • 39
34
votes
8 answers

Datatable styling so bootstrap button appears on same row as other elements

I'm using jQuery DataTables plugin and Bootstrap on my rails site. I can't get my custom button and other table header elements to nest in the same row, They are stacked instead of being inline. Any suggestions to get them all on the same line?…
ToddT
  • 3,084
  • 4
  • 39
  • 83
31
votes
4 answers

make column data as hyperlink (dataTable JQUERY)

I am trying to make a column as hyperlink with datatable but no success. function successCallback(responseObj){ $(document).ready(function() { $('#example').dataTable( { "data":responseObj , "bDestroy": true, …
Undisputed007
  • 639
  • 1
  • 10
  • 31
30
votes
3 answers

Remove search filter on Datatable

I have applied a button in my DataTable, which on click, filters the data table, to just show the clicked row. table initialization is: var oDatatable = $("#tblDataTable").DataTable({ dom:…
CSharpNewBee
  • 1,951
  • 6
  • 28
  • 64
21
votes
3 answers

DataTables trying to access datatables.net.js with RequireJS

I'm trying to configure DataTables to work with RequireJS and my configuration always results in this error: require.js:1926 GET https://preview.c9users.io/{username}/{workspace}/lib/datatables.net.js Uncaught Error: Script error for:…
Peter G.
  • 7,816
  • 20
  • 80
  • 154
20
votes
2 answers

How to get filtered Data result set from jQuery Datatable

It would be great if someone help me on the issue. I am just trying to get the filtered result set from the Datatable. Below is my code. var filtered_row_data = $('#example').DataTable().column(1).search('186').data().unique().sort(); …
Raja
  • 3,477
  • 12
  • 47
  • 89
16
votes
4 answers

DataTables search child row content

The DataTables search bar does not let me search for content within child rows. I have searched extensively to find the answer to this (1, 2, 3, 4, 5, 6, 7, 8, 9), but there are little to no responses on the issue. Here's a simple jsfiddle and…
cooltoast
  • 297
  • 2
  • 3
  • 8
15
votes
3 answers

Datatables custom filtering with server side

I'm using DataTables and also using server side processing (Django). I have a seperate textfield in which I use it to custom filter data in the DataTable after the table has been rendered already. The following works just fine (I want to custom…
Amir Mog
  • 321
  • 1
  • 4
  • 17
15
votes
3 answers

jQuery dataTables - get filtered column values

I am using a jQuery dataTable and when the user selects a drop down it searches the data table and filters it and redraws the contents based upon the searched data : mtTable.columns().each(function() { mtTable.column(22).search(searchVal, true,…
foop
  • 513
  • 1
  • 7
  • 16
14
votes
3 answers

JQuery Datatable - Placing a custom loading GIF instead of default "Processing" text

I'm using the current version of JQuery Datatable. I have implemented server-side processing. Is there any way to place our own Loading GIF instead of the dafault text "Processing"? Here's my HTML code :
Mr.Human
  • 547
  • 2
  • 12
  • 30
14
votes
4 answers

How to add multiple rows in datatables jquery

I have used https://datatables.net/reference/api/rows.add%28%29 link working but the data showing the table as [object,object]. How to show the object to string. i have used JSON.stringify(obj) its also not working. HTML
13
votes
2 answers

DataTable responsive display certain columns

I am using DataTables along with responsive and facing issues while trying to display only certain columns. Table layout is like this: I need to display to only 'Column 1', 'Column3', 'Column 7', 'Column 8', 'Column 10' and hide others( these…
Abhishekh Gupta
  • 6,206
  • 4
  • 18
  • 46
12
votes
4 answers

Export All from DataTables with Server Side processing?

I have tables which use DataTables Server Side processing to show on my website. I want to be able to 'Export All' and have all rows be exported, not just those rows being displayed. There are 60000+ rows and 65+ columns, so it must be done with…
Mike
  • 1,853
  • 3
  • 45
  • 75
12
votes
3 answers

Datatables draw() without ajax call

I'm trying to resize jquery Datatables to fit the screen size. Datatables runs in server-side mode (property "serverSide": true). When the window size is changed I make recalculation of new datatables height and then call draw(false) to redraw the…
Sergey Zhukov
  • 1,342
  • 1
  • 13
  • 24
11
votes
2 answers

jQuery Datatable DOM positioning for Buttons

I just upgraded my jQuery Datatable version to 1.10. And then i tried to remove its retired plugin such as "Colvis" and "Tabletools" with the "Button" extension. Everything works fine here. But the problem for me is, I could not able to separate…
Raja
  • 3,477
  • 12
  • 47
  • 89
1
2 3
54 55