2010-08-17 09:42:13 +02:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
< html >
< head >
< meta http-equiv = "content-type" content = "text/html; charset=utf-8" / >
< link rel = "shortcut icon" type = "image/ico" href = "http://www.datatables.net/favicon.ico" / >
< title > DataTables example< / title >
< style type = "text/css" title = "currentStyle" >
@import "../../media/css/demo_page.css";
@import "../../media/css/demo_table_jui.css";
2010-08-22 14:48:20 +02:00
@import "../examples_support/themes/smoothness/jquery-ui-1.8.4.custom.css";
2010-08-17 09:42:13 +02:00
.ui-tabs .ui-tabs-panel { padding: 10px }
< / style >
< script type = "text/javascript" language = "javascript" src = "../../media/js/jquery.js" > < / script >
< script type = "text/javascript" language = "javascript" src = "../../media/js/jquery.dataTables.js" > < / script >
< script type = "text/javascript" language = "javascript" src = "../examples_support/jquery-ui-tabs.js" > < / script >
< script type = "text/javascript" charset = "utf-8" >
$(document).ready(function() {
$("#tabs").tabs( {
"show": function(event, ui) {
var oTable = $('div.dataTables_scrollBody>table.display', ui.panel).dataTable();
if ( oTable.length > 0 ) {
oTable.fnAdjustColumnSizing();
}
}
} );
$('table.display').dataTable( {
"sScrollY": "200px",
"bScrollCollapse": true,
"bPaginate": false,
"bJQueryUI": true,
"aoColumnDefs": [
{ "sWidth": "10%", "aTargets": [ -1 ] }
]
} );
} );
< / script >
< / head >
< body id = "dt_example" >
< div id = "container" >
< div class = "full_width big" >
DataTables scrolling and jQuery UI tabs
< / div >
< h1 > Preamble< / h1 >
< p > This example shows how DataTables with scrolling can be used together with jQuery UI tabs (or indeed any other method whereby the table is in a hidden (display:none) element when it is initialised). The reason this requires special consideration, is that when DataTables is initialised and it is in a hidden element, the browser doesn't have any measurements with which to give DataTables, and this will require in the misalignment of columns when scrolling is enabled.< / p >
< p > The method to get around this is to call the fnAdjustColumnSizing API function. This function will calculate the column widths that are needed based on the current data and then redraw the table - which is exactly what is needed when the table becomes visible for the first time. For this we use the 'show' method provided by jQuery UI tables. We check to see if the DataTable has been created or not (note the extra selector for 'div.dataTables_scrollBody', this is added when the DataTable is initialised). If the table has been initialised, we re-size it. An optimisation could be added to re-size only of the first showing of the table.< / p >
< h1 > Live example< / h1 >
< div id = "demo" >
< div id = "tabs" >
< ul >
< li > < a href = "#tabs-1" > Trident browsers< / a > < / li >
< li > < a href = "#tabs-2" > Gecko browsers< / a > < / li >
< / ul >
< div id = "tabs-1" >
< table cellpadding = "0" cellspacing = "0" border = "0" class = "display" id = "example1" >
< thead >
< tr >
< th > Rendering engine< / th >
< th > Browser< / th >
< th > Platform(s)< / th >
< th > Engine version< / th >
< th > Grade< / th >
< / tr >
< / thead >
< tfoot >
< tr >
< th > Rendering engine< / th >
< th > Browser< / th >
< th > Platform(s)< / th >
< th > Engine version< / th >
< th > Grade< / th >
< / tr >
< / tfoot >
< tbody >
< tr class = "odd gradeX" >
< td > Trident< / td >
< td > Internet
Explorer 4.0< / td >
< td > Win 95+< / td >
< td class = "center" > 4< / td >
< td class = "center" > X< / td >
< / tr >
< tr class = "odd gradeC" >
< td > Trident< / td >
< td > Internet
Explorer 5.0< / td >
< td > Win 95+< / td >
< td class = "center" > 5< / td >
< td class = "center" > C< / td >
< / tr >
< tr class = "odd gradeA" >
< td > Trident< / td >
< td > Internet
Explorer 5.5< / td >
< td > Win 95+< / td >
< td class = "center" > 5.5< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "odd gradeA" >
< td > Trident< / td >
< td > Internet
Explorer 6< / td >
< td > Win 98+< / td >
< td class = "center" > 6< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "odd gradeA" >
< td > Trident< / td >
< td > Internet Explorer 7< / td >
< td > Win XP SP2+< / td >
< td class = "center" > 7< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "odd gradeA" >
< td > Trident< / td >
< td > AOL browser (AOL desktop)< / td >
< td > Win XP< / td >
< td class = "center" > 6< / td >
< td class = "center" > A< / td >
< / tr >
< tbody >
< / table >
< / div >
< div id = "tabs-2" >
< table cellpadding = "0" cellspacing = "0" border = "0" class = "display" id = "example2" >
< thead >
< tr >
< th > Rendering engine< / th >
< th > Browser< / th >
< th > Platform(s)< / th >
< th > Engine version< / th >
< th > Grade< / th >
< / tr >
< / thead >
< tfoot >
< tr >
< th > Rendering engine< / th >
< th > Browser< / th >
< th > Platform(s)< / th >
< th > Engine version< / th >
< th > Grade< / th >
< / tr >
< / tfoot >
< tbody >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Firefox 1.0< / td >
< td > Win 98+ / OSX.2+< / td >
< td class = "center" > 1.7< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Firefox 1.5< / td >
< td > Win 98+ / OSX.2+< / td >
< td class = "center" > 1.8< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Firefox 2.0< / td >
< td > Win 98+ / OSX.2+< / td >
< td class = "center" > 1.8< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Firefox 3.0< / td >
< td > Win 2k+ / OSX.3+< / td >
< td class = "center" > 1.9< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Camino 1.0< / td >
< td > OSX.2+< / td >
< td class = "center" > 1.8< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Camino 1.5< / td >
< td > OSX.3+< / td >
< td class = "center" > 1.8< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Netscape 7.2< / td >
< td > Win 95+ / Mac OS 8.6-9.2< / td >
< td class = "center" > 1.7< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Netscape Browser 8< / td >
< td > Win 98SE+< / td >
< td class = "center" > 1.7< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Netscape Navigator 9< / td >
< td > Win 98+ / OSX.2+< / td >
< td class = "center" > 1.8< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Mozilla 1.0< / td >
< td > Win 95+ / OSX.1+< / td >
< td class = "center" > 1< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Mozilla 1.1< / td >
< td > Win 95+ / OSX.1+< / td >
< td class = "center" > 1.1< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Mozilla 1.2< / td >
< td > Win 95+ / OSX.1+< / td >
< td class = "center" > 1.2< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Mozilla 1.3< / td >
< td > Win 95+ / OSX.1+< / td >
< td class = "center" > 1.3< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Mozilla 1.4< / td >
< td > Win 95+ / OSX.1+< / td >
< td class = "center" > 1.4< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Mozilla 1.5< / td >
< td > Win 95+ / OSX.1+< / td >
< td class = "center" > 1.5< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Mozilla 1.6< / td >
< td > Win 95+ / OSX.1+< / td >
< td class = "center" > 1.6< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Mozilla 1.7< / td >
< td > Win 98+ / OSX.1+< / td >
< td class = "center" > 1.7< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Mozilla 1.8< / td >
< td > Win 98+ / OSX.1+< / td >
< td class = "center" > 1.8< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Seamonkey 1.1< / td >
< td > Win 98+ / OSX.2+< / td >
< td class = "center" > 1.8< / td >
< td class = "center" > A< / td >
< / tr >
< tr class = "gradeA" >
< td > Gecko< / td >
< td > Epiphany 2.20< / td >
< td > Gnome< / td >
< td class = "center" > 1.8< / td >
< td class = "center" > A< / td >
< / tr >
< / tbody >
< / table >
< / div >
< / div >
< / div >
< div class = "spacer" > < / div >
< h1 > Initialisation code< / h1 >
< pre > $(document).ready(function() {
$("#tabs").tabs( {
"show": function(event, ui) {
var oTable = $('div.dataTables_scrollBody> table.display', ui.panel).dataTable();
if ( oTable.length > 0 ) {
oTable.fnAdjustColumnSizing();
}
}
} );
$('table.display').dataTable( {
"sScrollY": "200px",
"bScrollCollapse": true,
"bPaginate": false,
"bJQueryUI": true,
"aoColumnDefs": [
{ "sWidth": "10%", "aTargets": [ -1 ] }
]
} );
} );< / pre >
< h1 > Other examples< / h1 >
< h2 > Basic initialisation< / h2 >
< ul >
< li > < a href = "../basic_init/zero_config.html" > Zero configuration< / a > < / li >
< li > < a href = "../basic_init/filter_only.html" > Feature enablement< / a > < / li >
< li > < a href = "../basic_init/table_sorting.html" > Sorting data< / a > < / li >
< li > < a href = "../basic_init/multi_col_sort.html" > Multi-column sorting< / a > < / li >
< li > < a href = "../basic_init/multiple_tables.html" > Multiple tables< / a > < / li >
< li > < a href = "../basic_init/hidden_columns.html" > Hidden columns< / a > < / li >
< li > < a href = "../basic_init/dom.html" > DOM positioning< / a > < / li >
< li > < a href = "../basic_init/state_save.html" > State saving< / a > < / li >
< li > < a href = "../basic_init/alt_pagination.html" > Alternative pagination styles< / a > < / li >
< li > Scrolling:
< a href = "../basic_init/scroll_x.html" > Horizontal< / a > /
< a href = "../basic_init/scroll_y.html" > Vertical< / a > /
< a href = "../basic_init/scroll_xy.html" > Both< / a > /
2010-09-05 11:21:26 +02:00
< a href = "../basic_init/scroll_y_theme.html" > Themed< / a > /
< a href = "../basic_init/scroll_y_infinite.html" > Infinite< / a >
2010-08-17 09:42:13 +02:00
< / li >
< li > < a href = "../basic_init/language.html" > Change language information (internationalisation)< / a > < / li >
< li > < a href = "../basic_init/themes.html" > ThemeRoller themes (Smoothness)< / a > < / li >
< / ul >
< h2 > Advanced initialisation< / h2 >
< ul >
< li > < a href = "../advanced_init/events_pre_init.html" > Events (pre initialisation)< / a > < / li >
< li > < a href = "../advanced_init/events_post_init.html" > Events (post initialisation)< / a > < / li >
< li > < a href = "../advanced_init/column_render.html" > Column rendering< / a > < / li >
< li > < a href = "../advanced_init/html_sort.html" > Sorting without HTML tags< / a > < / li >
< li > < a href = "../advanced_init/dom_multiple_elements.html" > Multiple table controls (sDom)< / a > < / li >
< li > < a href = "../advanced_init/length_menu.html" > Defining length menu options< / a > < / li >
< li > < a href = "../advanced_init/dom_toolbar.html" > Custom toolbar (element) around table< / a > < / li >
< li > < a href = "../advanced_init/highlight.html" > Row highlighting with CSS< / a > < / li >
< li > < a href = "../advanced_init/complex_header.html" > Column grouping through col/row spans< / a > < / li >
< li > < a href = "../advanced_init/row_grouping.html" > Row grouping< / a > < / li >
< li > < a href = "../advanced_init/row_callback.html" > Row callback< / a > < / li >
< li > < a href = "../advanced_init/footer_callback.html" > Footer callback< / a > < / li >
< li > < a href = "../advanced_init/language_file.html" > Change language information from a file (internationalisation)< / a > < / li >
< / ul >
< h2 > Data sources< / h2 >
< ul >
< li > < a href = "../data_sources/dom.html" > DOM< / a > < / li >
< li > < a href = "../data_sources/js_array.html" > Javascript array< / a > < / li >
< li > < a href = "../data_sources/ajax.html" > Ajax source< / a > < / li >
< li > < a href = "../data_sources/server_side.html" > Server side processing< / a > < / li >
< / ul >
< h2 > Server-side processing< / h2 >
< ul >
< li > < a href = "../server_side/server_side.html" > Obtain server-side data< / a > < / li >
< li > < a href = "../server_side/custom_vars.html" > Add extra HTTP variables< / a > < / li >
< li > < a href = "../server_side/post.html" > Use HTTP POST< / a > < / li >
< li > < a href = "../server_side/column_ordering.html" > Custom column ordering (in callback data)< / a > < / li >
< li > < a href = "../server_side/pipeline.html" > Pipelining data (reduce Ajax calls for paging)< / a > < / li >
< li > < a href = "../server_side/row_details.html" > Show and hide details about a particular record< / a > < / li >
< li > < a href = "../server_side/select_rows.html" > User selectable rows (multiple rows)< / a > < / li >
< / ul >
< h2 > API< / h2 >
< ul >
< li > < a href = "../api/add_row.html" > Dynamically add a new row< / a > < / li >
< li > < a href = "../api/multi_filter.html" > Individual column filtering (using "input" elements)< / a > < / li >
< li > < a href = "../api/multi_filter_select.html" > Individual column filtering (using "select" elements)< / a > < / li >
< li > < a href = "../api/highlight.html" > Highlight rows and columns< / a > < / li >
< li > < a href = "../api/row_details.html" > Show and hide details about a particular record< / a > < / li >
< li > < a href = "../api/select_row.html" > User selectable rows (multiple rows)< / a > < / li >
< li > < a href = "../api/select_single_row.html" > User selectable rows (single row) and delete rows< / a > < / li >
< li > < a href = "../api/editable.html" > Editable rows (with jEditable)< / a > < / li >
< li > < a href = "../api/form.html" > Submit form with elements in table< / a > < / li >
< li > < a href = "../api/counter_column.html" > Index column (static number column)< / a > < / li >
< li > < a href = "../api/show_hide.html" > Show and hide columns dynamically< / a > < / li >
< li > < a href = "../api/api_in_init.html" > API function use in initialisation object (callback)< / a > < / li >
< li > < a href = "../api/tabs_and_scrolling.html" > DataTables scrolling and tabs< / a > < / li >
< li > < a href = "../api/regex.html" > Regular expression filtering< / a > < / li >
< / ul >
< h2 > Plug-ins< / h2 >
< ul >
< li > < a href = "../plug-ins/plugin_api.html" > Add custom API functions< / a > < / li >
< li > < a href = "../plug-ins/sorting_plugin.html" > Sorting and type detection< / a > < / li >
< li > < a href = "../plug-ins/paging_plugin.html" > Custom pagination controls< / a > < / li >
< li > < a href = "../plug-ins/range_filtering.html" > Range filtering / custom filtering< / a > < / li >
< li > < a href = "../plug-ins/dom_sort.html" > Live DOM sorting< / a > < / li >
< li > < a href = "../plug-ins/html_sort.html" > Automatic HTML type detection< / a > < / li >
< / ul >
< p > Please refer to the < a href = "http://www.datatables.net/" > < i > DataTables< / i > documentation< / a > for full information about its API properties and methods.< / p >
< div id = "footer" style = "text-align:center;" >
< span style = "font-size:10px;" >
DataTables © Allan Jardine 2008-2010.
< / span >
< / div >
< / div >
< / body >
< / html >