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

25 lines
564 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>Vertical scrolling with jQuery UI ThemeRoller</title>
<js><![CDATA[
$(document).ready(function() {
$('#example').dataTable( {
"scrollY": 200,
"jQueryUI": true,
"paginationType": "full_numbers"
} );
} );
]]></js>
<info>
This example is an extension of the vertical scrolling example, showing DataTables ability to be themed by jQuery UI's ThemeRoller.
</info>
</dt-example>