1
0
mirror of https://github.com/DataTables/DataTables.git synced 2024-12-12 00:08:48 +01:00
DataTables/examples_src/basic_init/zero_config.xml

20 lines
459 B
XML
Raw Normal View History

<?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>