mirror of
https://github.com/DataTables/DataTables.git
synced 2024-12-02 14:24:11 +01:00
25 lines
564 B
XML
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>
|