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.last</name>
<summary>Pagination 'last' button string</summary>
<since>1.10</since>
<type type="string" />
<default value="Last" />
<description>
<![CDATA[
Text used when the pagination control shows the button to take the user to the last 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 `<` and `>` respectively.
]]>
</description>
<example title="Set text for pagination 'last' button"><![CDATA[
$('#example').dataTable( {
"language": {
"paginate": {
"last": "Last 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.next</related>
<related type="option">language.paginate.previous</related>
<related type="option">language.aria.paginate</related>
<related type="option">language.aria.paginate.last</related>
</dt-option>
|