1
0
mirror of https://github.com/DataTables/DataTables.git synced 2024-11-29 11:24:10 +01:00
DataTables/examples_src/basic_init/zero_config.xml
2013-03-11 16:32:28 +00:00

20 lines
459 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<dt-example table-type="html">
<css lib="datatables" />
<js lib="jquery" />
<js lib="datatables" />
<title>Zero configuration</title>
<js><![CDATA[
$(document).ready(function() {
$('#example').dataTable();
} );
]]></js>
<info>
DataTables has most features enabled by default, so all you need to do to use it with one of your own tables is to call the construction function (as shown below).
</info>
</dt-example>