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

24 lines
951 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<dt-example table-type="html">
<css lib="jqueryui" />
<css lib="datatables-jqueryui" />
<js lib="jquery" />
<js lib="datatables" />
<title>jQuery UI themes</title>
<js><![CDATA[
$(document).ready(function() {
$('#example').dataTable({
"jQueryUI": true,
"paginationType": "full_numbers"
});
} );
]]></js>
<info>
Styling widgets such as DataTables can often take a considerable amount of time to fully integrate it into your site / application, with the demo styles as a base. This holds true for all widgets, and the jQuery UI team have addressed this issue by introducing themes through their excellent <a href="http://jqueryui.com/themeroller/">ThemeRoller</a>. DataTables has full support for ThemeRoller created themes, all you need to do is enable the <init>jQueryUI</init> flag in the initialisation object, and the required mark-up and classes will be added by DataTables.
</info>
</dt-example>