Search
-
default language
by iksela ·$('#table').dataTable({ -
can't create tables in a certain order
by horsed ·After table 2 was created via [code]$('#table2).dataTable({ ... });[/code] I couldn't create table 1 anymore. I just got the "No matching results" row. That lead me to the _fnDraw() functio -
passing Id value on "server processing script"
by djlakes ·[code]$('#table_id').dataTable({ -
can't create tables in a certain order
by horsed ·var oTable = $('#table1').dataTable({ -
Highlighting row on click.
by jQuery_user ·[code]$("#tableId tbody tr").live("click", function(event){ -
DataTables, Form, paging and Dom
by xiligroup ·$('#tableupdating').height(200); -
Horizontal Scrolling Problem
by x2austin ·$('#tableFilterContainer').empty(); -
Empty aoData then loading data from Ajax source
by freerider ·oTable = $('#table').dataTable( { -
Range Filtering on multiple tables
by Jerrylein ·oTable0 = $('#table0').dataTable(); -
BServerSide and multiple word search
by vedranbe ·oTable = $('#table_content').dataTable( { -
Test datatable exists
by allan ·$('#table_id tbody tr').length -
Datatables Server Side + jEditable base
by allan ·Since you are using aData[0], can you just use $('#table_id thead th:eq(0)').text()? -
Changing sTitle AFTER loading the table
by allan ·$('#table_id thead th:eq(0).html( 'whatever' ); will do the trick. There is no DataTables API method for this, since it's just a standard DOM thing to do. -
Managing Multiple Non-Standard Tables
by bryceray1121 ·After each table is created this function is called passing a unique id such as "#table1". However, I've run into a problem trying to do this. When the datatables are initiated they look l -
Moving rows up and down.
by denne ·var arr = jQuery('#table tbody tr.selected_row') -
Not needing up and down image for sorting
by cdaigle ·$('#table_audio').dataTable({ -
How to get column information
by peterkronenberg ·Ok, I have no problem using a DOM query, but the problem now is that $('#table_id thead th') returns twice as many columns as there really are because of the FixedHeader. I can't even figure out how -
ajax and search screen
by shrat ·oTable = $("#tableSearch").dataTable(); -
ajax and search screen
by shrat ·$('#tableSearch').dataTable( { -
How to get column information
by allan ·$('#table_id thead th:eq('+c+')').html();