File: language.emptyTable.xml

package info (click to toggle)
datatables.js 1.10.21%2Bdfsg-2%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 22,604 kB
  • sloc: javascript: 64,254; xml: 10,441; php: 4,623; sh: 523; makefile: 21
file content (27 lines) | stat: -rw-r--r-- 944 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
<?xml version="1.0" encoding="UTF-8" ?>
<dt-option group="i18n">
	<name>language.emptyTable</name>
	<summary>Table has no records string</summary>
	<since>1.10</since>

	<type type="string" />
	<default value="No data available in table" />

	<description>
		This string is shown in preference to `dt-init language.zeroRecords` when the table is empty of data (regardless of filtering) - i.e. there are zero records in the table. 

		Note that this is an optional parameter. If it is not given, the value of `dt-init language.zeroRecords` will be used instead (either the default or given value).
	</description>

	<example title="Set emptyTable string"><![CDATA[
$('#example').dataTable( {
	"language": {
      "emptyTable": "No data available in table"
    }
} );
]]></example>

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