File: language.paginate.next.xml

package info (click to toggle)
datatables.js 1.11.5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 22,848 kB
  • sloc: javascript: 65,075; xml: 10,712; php: 4,741; sh: 544; makefile: 18
file content (37 lines) | stat: -rw-r--r-- 1,162 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
<?xml version="1.0" encoding="UTF-8" ?>
<dt-option group="i18n">
	<name>language.paginate.next</name>
	<summary>Pagination 'next' button string</summary>
	<since>1.10</since>

	<type type="string" />
	<default value="Next" />

	<description>
		<![CDATA[
		
		Text to use for the 'next' pagination button (to take the user to the next page).
		
		Note that DataTables writes this property to the document as HTML, so you can use HTML tags in the language string, but HTML entities such as `<` and `>` should be encoded as `&lt;` and `&gt;` respectively.

		]]>
	</description>

	<example title="Set text for pagination 'next' button"><![CDATA[
$('#example').dataTable( {
  "language": {
    "paginate": {
      "next": "Next page"
    }
  }
} );
]]></example>

	<related type="option">language</related>
	<related type="option">language.paginate</related>
	<related type="option">language.paginate.first</related>
	<related type="option">language.paginate.last</related>
	<related type="option">language.paginate.previous</related>
	<related type="option">language.aria.paginate</related>
	<related type="option">language.aria.paginate.next</related>
</dt-option>