File: processing.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 (21 lines) | stat: -rw-r--r-- 690 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
<?xml version="1.0" encoding="UTF-8" ?>
<dt-option group="feature">
	<name>processing</name>
	<summary>Feature control the processing indicator.</summary>
	<since>1.10</since>

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

	<description>
		Enable or disable the display of a 'processing' indicator when the table is being processed (e.g. a sort). This is particularly useful for tables with large amounts of data where it can take a noticeable amount of time to sort the entries.
	</description>

	<example title="Enable processing display"><![CDATA[
$('#example').dataTable( {
	"processing": true
} );
]]></example>

	<related type="option">language.processing</related>
</dt-option>