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>
|