File: language.loadingRecords.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 (26 lines) | stat: -rw-r--r-- 984 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
<?xml version="1.0" encoding="UTF-8" ?>
<dt-option group="i18n">
	<name>language.loadingRecords</name>
	<summary>Loading information display string - shown when Ajax loading data</summary>
	<since>1.10</since>

	<type type="string" />
	<default value="Loading..." />

	<description>
		When using Ajax sourced data and during the first draw when DataTables is gathering the data, this message is shown in an empty row in the table to indicate to the end user the the data is being loaded. Note that this parameter is not used when loading data by server-side processing, just Ajax sourced data with client-side processing.
	</description>

	<example title="Set loading information text"><![CDATA[
$('#example').dataTable( {
  "ajax": "json.txt",
  "language": {
     "loadingRecords": "Please wait - loading..."
  }
} );
]]></example>

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