mirror of
https://github.com/DataTables/DataTables.git
synced 2024-11-29 11:24:10 +01:00
Update - examples: All examples now use $().DataTable()
to construct the table.
- The API examples already used the new form, but many were still `$().dataTable()`, which still works, but the new API form method is prefered.
This commit is contained in:
parent
ecf94192ae
commit
781f7fcaef
@ -1 +1 @@
|
|||||||
bc2b4c87f2b853484b113046e54e59016e795a26
|
d2d0e05d9d169d5a8bfc4031ff6db51b0e58cd3e
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"columnDefs": [
|
"columnDefs": [
|
||||||
{
|
{
|
||||||
// The `data` parameter refers to the data for the cell (defined by the
|
// The `data` parameter refers to the data for the cell (defined by the
|
||||||
@ -550,7 +550,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"columnDefs": [
|
"columnDefs": [
|
||||||
{
|
{
|
||||||
// The `data` parameter refers to the data for the cell (defined by the
|
// The `data` parameter refers to the data for the cell (defined by the
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"columnDefs": [ {
|
"columnDefs": [ {
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"targets": -1
|
"targets": -1
|
||||||
@ -550,7 +550,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"columnDefs": [ {
|
"columnDefs": [ {
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"targets": -1
|
"targets": -1
|
||||||
|
@ -26,7 +26,7 @@ $.extend( $.fn.dataTable.defaults, {
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
|
||||||
@ -547,7 +547,7 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"dom": '<"top"iflp<"clear">>rt<"bottom"iflp<"clear">>'
|
"dom": '<"top"iflp<"clear">>rt<"bottom"iflp<"clear">>'
|
||||||
} );
|
} );
|
||||||
} );
|
} );
|
||||||
@ -546,7 +546,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"dom": '<"top"iflp<"clear">>rt<"bottom"iflp<"clear">>'
|
"dom": '<"top"iflp<"clear">>rt<"bottom"iflp<"clear">>'
|
||||||
} );
|
} );
|
||||||
} );</code>
|
} );</code>
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"dom": '<"toolbar">frtip'
|
"dom": '<"toolbar">frtip'
|
||||||
} );
|
} );
|
||||||
|
|
||||||
@ -551,7 +551,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"dom": '<"toolbar">frtip'
|
"dom": '<"toolbar">frtip'
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ $(document).ready(function() {
|
|||||||
.on( 'order.dt', function () { eventFired( 'Order' ); } )
|
.on( 'order.dt', function () { eventFired( 'Order' ); } )
|
||||||
.on( 'search.dt', function () { eventFired( 'Search' ); } )
|
.on( 'search.dt', function () { eventFired( 'Search' ); } )
|
||||||
.on( 'page.dt', function () { eventFired( 'Page' ); } )
|
.on( 'page.dt', function () { eventFired( 'Page' ); } )
|
||||||
.dataTable();
|
.DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
|
||||||
@ -562,7 +562,7 @@ $(document).ready(function() {
|
|||||||
.on( 'order.dt', function () { eventFired( 'Order' ); } )
|
.on( 'order.dt', function () { eventFired( 'Order' ); } )
|
||||||
.on( 'search.dt', function () { eventFired( 'Search' ); } )
|
.on( 'search.dt', function () { eventFired( 'Search' ); } )
|
||||||
.on( 'page.dt', function () { eventFired( 'Page' ); } )
|
.on( 'page.dt', function () { eventFired( 'Page' ); } )
|
||||||
.dataTable();
|
.DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
|
|
||||||
$('#example tbody').on('click', 'tr', function () {
|
$('#example tbody').on('click', 'tr', function () {
|
||||||
var name = $('td', this).eq(0).text();
|
var name = $('td', this).eq(0).text();
|
||||||
@ -539,7 +539,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
|
|
||||||
$('#example tbody').on('click', 'tr', function () {
|
$('#example tbody').on('click', 'tr', function () {
|
||||||
var name = $('td', this).eq(0).text();
|
var name = $('td', this).eq(0).text();
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"footerCallback": function ( row, data, start, end, display ) {
|
"footerCallback": function ( row, data, start, end, display ) {
|
||||||
var api = this.api(), data;
|
var api = this.api(), data;
|
||||||
|
|
||||||
@ -511,7 +511,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"footerCallback": function ( row, data, start, end, display ) {
|
"footerCallback": function ( row, data, start, end, display ) {
|
||||||
var api = this.api(), data;
|
var api = this.api(), data;
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"language": {
|
"language": {
|
||||||
"url": "//cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/German.json"
|
"url": "//cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/German.json"
|
||||||
}
|
}
|
||||||
@ -539,7 +539,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"language": {
|
"language": {
|
||||||
"url": "//cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/German.json"
|
"url": "//cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/German.json"
|
||||||
}
|
}
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"lengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]]
|
"lengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]]
|
||||||
} );
|
} );
|
||||||
} );
|
} );
|
||||||
@ -543,7 +543,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"lengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]]
|
"lengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]]
|
||||||
} );
|
} );
|
||||||
} );</code>
|
} );</code>
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"createdRow": function ( row, data, index ) {
|
"createdRow": function ( row, data, index ) {
|
||||||
if ( data[5].replace(/[\$,]/g, '') * 1 > 150000 ) {
|
if ( data[5].replace(/[\$,]/g, '') * 1 > 150000 ) {
|
||||||
$('td', row).eq(5).addClass('highlight');
|
$('td', row).eq(5).addClass('highlight');
|
||||||
@ -547,7 +547,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"createdRow": function ( row, data, index ) {
|
"createdRow": function ( row, data, index ) {
|
||||||
if ( data[5].replace(/[\$,]/g, '') * 1 > 150000 ) {
|
if ( data[5].replace(/[\$,]/g, '') * 1 > 150000 ) {
|
||||||
$('td', row).eq(5).addClass('highlight');
|
$('td', row).eq(5).addClass('highlight');
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"aoColumns": [
|
"aoColumns": [
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
@ -556,7 +556,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"aoColumns": [
|
"aoColumns": [
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": {
|
"ajax": {
|
||||||
"url": "data/objects_root_array.txt",
|
"url": "data/objects_root_array.txt",
|
||||||
"dataSrc": ""
|
"dataSrc": ""
|
||||||
@ -98,7 +98,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": {
|
"ajax": {
|
||||||
"url": "data/objects_root_array.txt",
|
"url": "data/objects_root_array.txt",
|
||||||
"dataSrc": ""
|
"dataSrc": ""
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": {
|
"ajax": {
|
||||||
"url": "data/arrays_custom_prop.txt",
|
"url": "data/arrays_custom_prop.txt",
|
||||||
"dataSrc": "demo"
|
"dataSrc": "demo"
|
||||||
@ -90,7 +90,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": {
|
"ajax": {
|
||||||
"url": "data/arrays_custom_prop.txt",
|
"url": "data/arrays_custom_prop.txt",
|
||||||
"dataSrc": "demo"
|
"dataSrc": "demo"
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"ajax": "data/objects_deep.txt",
|
"ajax": "data/objects_deep.txt",
|
||||||
"columns": [
|
"columns": [
|
||||||
@ -105,7 +105,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"ajax": "data/objects_deep.txt",
|
"ajax": "data/objects_deep.txt",
|
||||||
"columns": [
|
"columns": [
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": "data/arrays.txt",
|
"ajax": "data/arrays.txt",
|
||||||
"deferRender": true
|
"deferRender": true
|
||||||
} );
|
} );
|
||||||
@ -82,7 +82,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": "data/arrays.txt",
|
"ajax": "data/arrays.txt",
|
||||||
"deferRender": true
|
"deferRender": true
|
||||||
} );
|
} );
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": "data/objects.txt",
|
"ajax": "data/objects.txt",
|
||||||
"columns": [
|
"columns": [
|
||||||
{ "data": "name" },
|
{ "data": "name" },
|
||||||
@ -99,7 +99,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": "data/objects.txt",
|
"ajax": "data/objects.txt",
|
||||||
"columns": [
|
"columns": [
|
||||||
{ "data": "name" },
|
{ "data": "name" },
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": "data/objects_subarrays.txt",
|
"ajax": "data/objects_subarrays.txt",
|
||||||
"columns": [
|
"columns": [
|
||||||
{ "data": "name[, ]" },
|
{ "data": "name[, ]" },
|
||||||
@ -115,7 +115,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": "data/objects_subarrays.txt",
|
"ajax": "data/objects_subarrays.txt",
|
||||||
"columns": [
|
"columns": [
|
||||||
{ "data": "name[, ]" },
|
{ "data": "name[, ]" },
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
ajax: "data/orthogonal.txt",
|
ajax: "data/orthogonal.txt",
|
||||||
columns: [
|
columns: [
|
||||||
{ data: "name" },
|
{ data: "name" },
|
||||||
@ -105,7 +105,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
ajax: "data/orthogonal.txt",
|
ajax: "data/orthogonal.txt",
|
||||||
columns: [
|
columns: [
|
||||||
{ data: "name" },
|
{ data: "name" },
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": "data/arrays.txt"
|
"ajax": "data/arrays.txt"
|
||||||
} );
|
} );
|
||||||
} );
|
} );
|
||||||
@ -95,7 +95,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": "data/arrays.txt"
|
"ajax": "data/arrays.txt"
|
||||||
} );
|
} );
|
||||||
} );</code>
|
} );</code>
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"initComplete": function () {
|
"initComplete": function () {
|
||||||
var api = this.api();
|
var api = this.api();
|
||||||
api.$('td').click( function () {
|
api.$('td').click( function () {
|
||||||
@ -549,7 +549,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"initComplete": function () {
|
"initComplete": function () {
|
||||||
var api = this.api();
|
var api = this.api();
|
||||||
api.$('td').click( function () {
|
api.$('td').click( function () {
|
||||||
|
@ -36,7 +36,7 @@ function filterColumn ( i ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
|
|
||||||
$('input.global_filter').on( 'keyup click', function () {
|
$('input.global_filter').on( 'keyup click', function () {
|
||||||
filterGlobal();
|
filterGlobal();
|
||||||
@ -638,7 +638,7 @@ function filterColumn ( i ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
|
|
||||||
$('input.global_filter').on( 'keyup click', function () {
|
$('input.global_filter').on( 'keyup click', function () {
|
||||||
filterGlobal();
|
filterGlobal();
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"pagingType": "full_numbers"
|
"pagingType": "full_numbers"
|
||||||
} );
|
} );
|
||||||
} );
|
} );
|
||||||
@ -552,7 +552,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"pagingType": "full_numbers"
|
"pagingType": "full_numbers"
|
||||||
} );
|
} );
|
||||||
} );</code>
|
} );</code>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"language": {
|
"language": {
|
||||||
"decimal": ",",
|
"decimal": ",",
|
||||||
"thousands": "."
|
"thousands": "."
|
||||||
@ -547,7 +547,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"language": {
|
"language": {
|
||||||
"decimal": ",",
|
"decimal": ",",
|
||||||
"thousands": "."
|
"thousands": "."
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -539,7 +539,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"dom": '<"top"i>rt<"bottom"flp><"clear">'
|
"dom": '<"top"i>rt<"bottom"flp><"clear">'
|
||||||
} );
|
} );
|
||||||
} );
|
} );
|
||||||
@ -600,7 +600,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"dom": '<"top"i>rt<"bottom"flp><"clear">'
|
"dom": '<"top"i>rt<"bottom"flp><"clear">'
|
||||||
} );
|
} );
|
||||||
} );</code>
|
} );</code>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"paging": false,
|
"paging": false,
|
||||||
"ordering": false,
|
"ordering": false,
|
||||||
"info": false
|
"info": false
|
||||||
@ -533,7 +533,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"paging": false,
|
"paging": false,
|
||||||
"ordering": false,
|
"ordering": false,
|
||||||
"info": false
|
"info": false
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -537,7 +537,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"columnDefs": [
|
"columnDefs": [
|
||||||
{
|
{
|
||||||
"targets": [ 2 ],
|
"targets": [ 2 ],
|
||||||
@ -550,7 +550,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"columnDefs": [
|
"columnDefs": [
|
||||||
{
|
{
|
||||||
"targets": [ 2 ],
|
"targets": [ 2 ],
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"language": {
|
"language": {
|
||||||
"lengthMenu": "Display _MENU_ records per page",
|
"lengthMenu": "Display _MENU_ records per page",
|
||||||
"zeroRecords": "Nothing found - sorry",
|
"zeroRecords": "Nothing found - sorry",
|
||||||
@ -539,7 +539,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"language": {
|
"language": {
|
||||||
"lengthMenu": "Display _MENU_ records per page",
|
"lengthMenu": "Display _MENU_ records per page",
|
||||||
"zeroRecords": "Nothing found - sorry",
|
"zeroRecords": "Nothing found - sorry",
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
columnDefs: [ {
|
columnDefs: [ {
|
||||||
targets: [ 0 ],
|
targets: [ 0 ],
|
||||||
orderData: [ 0, 1 ]
|
orderData: [ 0, 1 ]
|
||||||
@ -486,7 +486,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
columnDefs: [ {
|
columnDefs: [ {
|
||||||
targets: [ 0 ],
|
targets: [ 0 ],
|
||||||
orderData: [ 0, 1 ]
|
orderData: [ 0, 1 ]
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('table.display').dataTable();
|
$('table.display').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -254,7 +254,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('table.display').dataTable();
|
$('table.display').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"scrollX": true
|
"scrollX": true
|
||||||
} );
|
} );
|
||||||
} );
|
} );
|
||||||
@ -704,7 +704,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"scrollX": true
|
"scrollX": true
|
||||||
} );
|
} );
|
||||||
} );</code>
|
} );</code>
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"scrollY": 200,
|
"scrollY": 200,
|
||||||
"scrollX": true
|
"scrollX": true
|
||||||
} );
|
} );
|
||||||
@ -700,7 +700,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"scrollY": 200,
|
"scrollY": 200,
|
||||||
"scrollX": true
|
"scrollX": true
|
||||||
} );
|
} );
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"scrollY": "200px",
|
"scrollY": "200px",
|
||||||
"scrollCollapse": true,
|
"scrollCollapse": true,
|
||||||
"paging": false
|
"paging": false
|
||||||
@ -543,7 +543,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"scrollY": "200px",
|
"scrollY": "200px",
|
||||||
"scrollCollapse": true,
|
"scrollCollapse": true,
|
||||||
"paging": false
|
"paging": false
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
stateSave: true
|
stateSave: true
|
||||||
} );
|
} );
|
||||||
} );
|
} );
|
||||||
@ -545,7 +545,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
stateSave: true
|
stateSave: true
|
||||||
} );
|
} );
|
||||||
} );</code>
|
} );</code>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"order": [[ 3, "desc" ]]
|
"order": [[ 3, "desc" ]]
|
||||||
} );
|
} );
|
||||||
} );
|
} );
|
||||||
@ -539,7 +539,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"order": [[ 3, "desc" ]]
|
"order": [[ 3, "desc" ]]
|
||||||
} );
|
} );
|
||||||
} );</code>
|
} );</code>
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": '../ajax/data/arrays.txt'
|
"ajax": '../ajax/data/arrays.txt'
|
||||||
} );
|
} );
|
||||||
} );
|
} );
|
||||||
@ -82,7 +82,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"ajax": '../ajax/data/arrays.txt'
|
"ajax": '../ajax/data/arrays.txt'
|
||||||
} );
|
} );
|
||||||
} );</code>
|
} );</code>
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
|
||||||
@ -534,7 +534,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -82,7 +82,7 @@ var dataSet = [
|
|||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#demo').html( '<table cellpadding="0" cellspacing="0" border="0" class="display" id="example"></table>' );
|
$('#demo').html( '<table cellpadding="0" cellspacing="0" border="0" class="display" id="example"></table>' );
|
||||||
|
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"data": dataSet,
|
"data": dataSet,
|
||||||
"columns": [
|
"columns": [
|
||||||
{ "title": "Engine" },
|
{ "title": "Engine" },
|
||||||
@ -188,7 +188,7 @@ $(document).ready(function() {
|
|||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#demo').html( '<table cellpadding="0" cellspacing="0" border="0" class="display" id="example"></table>' );
|
$('#demo').html( '<table cellpadding="0" cellspacing="0" border="0" class="display" id="example"></table>' );
|
||||||
|
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"data": dataSet,
|
"data": dataSet,
|
||||||
"columns": [
|
"columns": [
|
||||||
{ "title": "Engine" },
|
{ "title": "Engine" },
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "../server_side/scripts/server_processing.php"
|
"ajax": "../server_side/scripts/server_processing.php"
|
||||||
@ -83,7 +83,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "../server_side/scripts/server_processing.php"
|
"ajax": "../server_side/scripts/server_processing.php"
|
||||||
|
@ -53,7 +53,7 @@ $.fn.dataTable.ext.order['dom-checkbox'] = function ( settings, col )
|
|||||||
|
|
||||||
/* Initialise the table with the required column ordering data types */
|
/* Initialise the table with the required column ordering data types */
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"columns": [
|
"columns": [
|
||||||
null,
|
null,
|
||||||
{ "orderDataType": "dom-text-numeric" },
|
{ "orderDataType": "dom-text-numeric" },
|
||||||
@ -1636,7 +1636,7 @@ $.fn.dataTable.ext.order['dom-checkbox'] = function ( settings, col )
|
|||||||
|
|
||||||
/* Initialise the table with the required column ordering data types */
|
/* Initialise the table with the required column ordering data types */
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"columns": [
|
"columns": [
|
||||||
null,
|
null,
|
||||||
{ "orderDataType": "dom-text-numeric" },
|
{ "orderDataType": "dom-text-numeric" },
|
||||||
|
@ -38,7 +38,7 @@ $.fn.dataTable.ext.type.order['salary-grade-pre'] = function ( d ) {
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
|
||||||
@ -575,7 +575,7 @@ $.fn.dataTable.ext.type.order['salary-grade-pre'] = function ( d ) {
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -29,7 +29,7 @@ $.fn.dataTable.ext.type.order['salary-grade-pre'] = function ( d ) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"columnDefs": [ {
|
"columnDefs": [ {
|
||||||
"type": "salary-grade",
|
"type": "salary-grade",
|
||||||
"targets": -1
|
"targets": -1
|
||||||
@ -564,7 +564,7 @@ $(document).ready(function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"columnDefs": [ {
|
"columnDefs": [ {
|
||||||
"type": "salary-grade",
|
"type": "salary-grade",
|
||||||
"targets": -1
|
"targets": -1
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": {
|
"ajax": {
|
||||||
@ -91,7 +91,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": {
|
"ajax": {
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "scripts/server_processing.php",
|
"ajax": "scripts/server_processing.php",
|
||||||
@ -166,7 +166,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "scripts/server_processing.php",
|
"ajax": "scripts/server_processing.php",
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "scripts/ids-objects.php",
|
"ajax": "scripts/ids-objects.php",
|
||||||
@ -97,7 +97,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "scripts/ids-objects.php",
|
"ajax": "scripts/ids-objects.php",
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": {
|
"ajax": {
|
||||||
@ -87,7 +87,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": {
|
"ajax": {
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "scripts/objects.php",
|
"ajax": "scripts/objects.php",
|
||||||
@ -87,7 +87,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "scripts/objects.php",
|
"ajax": "scripts/objects.php",
|
||||||
|
@ -138,7 +138,7 @@ $.fn.dataTable.Api.register( 'clearPipeline()', function () {
|
|||||||
// DataTables initialisation
|
// DataTables initialisation
|
||||||
//
|
//
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": $.fn.dataTable.pipeline( {
|
"ajax": $.fn.dataTable.pipeline( {
|
||||||
@ -324,7 +324,7 @@ $.fn.dataTable.Api.register( 'clearPipeline()', function () {
|
|||||||
// DataTables initialisation
|
// DataTables initialisation
|
||||||
//
|
//
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": $.fn.dataTable.pipeline( {
|
"ajax": $.fn.dataTable.pipeline( {
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": {
|
"ajax": {
|
||||||
@ -95,7 +95,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": {
|
"ajax": {
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var selected = [];
|
var selected = [];
|
||||||
|
|
||||||
$("#example").dataTable({
|
$("#example").DataTable({
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "scripts/ids-arrays.php",
|
"ajax": "scripts/ids-arrays.php",
|
||||||
@ -102,7 +102,7 @@ $(document).ready(function() {
|
|||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
var selected = [];
|
var selected = [];
|
||||||
|
|
||||||
$("#example").dataTable({
|
$("#example").DataTable({
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "scripts/ids-arrays.php",
|
"ajax": "scripts/ids-arrays.php",
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "scripts/server_processing.php"
|
"ajax": "scripts/server_processing.php"
|
||||||
@ -82,7 +82,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
"processing": true,
|
"processing": true,
|
||||||
"serverSide": true,
|
"serverSide": true,
|
||||||
"ajax": "scripts/server_processing.php"
|
"ajax": "scripts/server_processing.php"
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -537,7 +537,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -528,7 +528,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -529,7 +529,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -543,7 +543,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
scrollY: 200,
|
scrollY: 200,
|
||||||
paging: false
|
paging: false
|
||||||
} );
|
} );
|
||||||
@ -540,7 +540,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable( {
|
$('#example').DataTable( {
|
||||||
scrollY: 200,
|
scrollY: 200,
|
||||||
paging: false
|
paging: false
|
||||||
} );
|
} );
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -529,7 +529,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -540,7 +540,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -528,7 +528,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -529,7 +529,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -528,7 +528,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<script type="text/javascript" language="javascript" class="init">
|
<script type="text/javascript" language="javascript" class="init">
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );
|
} );
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
@ -528,7 +528,7 @@ $(document).ready(function() {
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<div class="js">
|
<div class="js">
|
||||||
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
<p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() {
|
||||||
$('#example').dataTable();
|
$('#example').DataTable();
|
||||||
} );</code>
|
} );</code>
|
||||||
|
|
||||||
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
<p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p>
|
||||||
|
Loading…
Reference in New Issue
Block a user