File: columns.orderSequence.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 (41 lines) | stat: -rw-r--r-- 1,349 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8" ?>
<dt-option group="columns">
	<name>columns.orderSequence</name>
	<summary>Order direction application sequence</summary>
	<since>1.10</since>

	<type type="array" />
	<default value="[ 'asc', 'desc' ]" />

	<description>
		You can control the default ordering direction, and even alter the behaviour of the order handler (i.e. only allow ascending sorting etc) using this parameter.
	</description>

	<example title="Using `orderSequence` to define the applied order sequence with `dt-init columnDefs`"><![CDATA[
$('#example').dataTable( {
  "columnDefs": [
    { "orderSequence": [ "asc" ], "targets": [ 1 ] },
    { "orderSequence": [ "desc", "asc", "asc" ], "targets": [ 2 ] },
    { "orderSequence": [ "desc" ], "targets": [ 3 ] }
  ]
} );
]]></example>

	<example title="Using `orderSequence` to define the applied order sequence with `dt-init columns`"><![CDATA[
$('#example').dataTable( {
  "columns": [
    null,
    { "orderSequence": [ "asc" ] },
    { "orderSequence": [ "desc", "asc", "asc" ] },
    { "orderSequence": [ "desc" ] },
    null
  ]
} );
]]></example>

	<related type="option">ordering</related>
	<related type="option">order</related>
	<related type="api">order()</related>
	<related type="api">column().order()</related>
	<related type="api">columns().order()</related>
</dt-option>