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
|
<?xml version="1.0" encoding="UTF-8" ?>
<dt-option group="i18n">
<name>language.search</name>
<summary>Search input string</summary>
<since>1.10</since>
<type type="string" />
<default value="Search:" />
<description>
Sets the string that is used for DataTables filtering input control.
The token `string _INPUT_`, if used in the string, is replaced with the HTML text box for the filtering input allowing control over where it appears in the string. If `string _INPUT_` is not given then the input box is appended to the string automatically.
</description>
<example title="Input text box will be appended at the end automatically"><![CDATA[
$('#example').dataTable( {
"language": {
"search": "Filter records:"
}
} );
]]></example>
<example title="Specify where the filter should appear"><![CDATA[
$('#example').dataTable( {
"language": {
"search": "Apply filter _INPUT_ to table"
}
} );
]]></example>
<related type="option">language</related>
<related type="option">searching</related>
<related type="option">language.searchPlaceholder</related>
<related type="api">search()</related>
</dt-option>
|