{hero}

searchPanes.i18n.countFiltered

自:SearchPanes 1.0.0

设置在搜索时显示在计数栏中的消息。
请注意 - 此属性需要 SearchPanes 扩展才能适用于 DataTables。

说明

此选项是 searchPanes.i18n.countFiltered 的别名,在使用 DataTables 2+ 时应优先使用此别名。它可用于配置 SearchPanes,无论面板如何插入文档中(layoutsearchPanes)。

请参阅 searchPanes.i18n.countFiltered 的文档以获取此选项的详细信息。

类型

字符串

说明

searchPanes.i18n.countFiltered 如果 searchPanes.viewTotal 选项设置为 true 且正在过滤,则它会更改在计数栏中显示的内容。

默认

  • 值:{shown} ({total})

默认 searchPanes.i18n.countFiltered 参数值为 {shown} ({total})

示例

更改 viewTotal 的消息:

new DataTable('#myTable', {
	layout: {
		top1: 'countFiltered'
	},
	searchPanes: {
		viewTotal: true,
		i18n: {
			count: '{total} found',
			countFiltered: '{shown} ({total})'
		}
	}
});

相关

以下选项直接相关,也可能对您的应用程序开发很有用。