File: paging.xml

package info (click to toggle)
datatables.js 1.10.13%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,232 kB
  • ctags: 1,329
  • sloc: xml: 10,249; php: 4,387; sh: 492; makefile: 21
file content (25 lines) | stat: -rw-r--r-- 952 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8" ?>
<dt-option group="feature">
	<name>paging</name>
	<summary>Enable or disable table pagination.</summary>
	<since>1.10</since>

	<type type="boolean" />
	<default>true</default>

	<description>
		DataTables can split the rows in tables into individual pages, which is an efficient method of showing a large number of records in a small space. The end user is provided with controls to request the display of different data as the navigate through the data. This feature is enabled by default, but if you wish to disable it, you may do so with this parameter.
	</description>

	<example title="Disable pagination"><![CDATA[
$('#example').dataTable( {
	"paging": false
} );
]]></example>

	<related type="option">info</related>
	<related type="option">lengthChange</related>
	<related type="option">lengthMenu</related>
	<related type="option">pagingType</related>
	<related type="api">page()</related>
</dt-option>