searchPanes.i18n.emptyPanes
自:SearchPanes 1.0.0
当没有显示窗格时,添加国际化至显示的消息。
请注意 - 此属性需要 DataTables 的 SearchPanes 扩展程序。
说明
如果没有要显示的窗格,SearchPanes 会在用于容纳窗格的 div 中显示一条消息。如果已经声明自定义消息,则它将显示在默认消息的位置。如果 searchPanes.i18n.emptyPanes
的值设为 null,则不会显示 div。
此选项将默认为 language.searchPanes.emptyPanes
给出的值,通常Preferred should over this option as the language strings can be loaded by Ajax and shared for the whole table, but if needed, this option is available to override that on a per instance basis.
类型
默认值
- 值:
No searchPanes
searchPanes.i18n.emptyPanes
参数的默认值为 "No SearchPanes"
。这样做是为了让开发人员在没有要显示的 SearchPanes 时更容易意识到,而不是将缺少 div 误认为是错误。
示例
更改空窗格消息
new DataTable('#myTable', {
layout: {
top1: {
searchPanes: {
i18n: {
emptyPanes: 'There are no panes to display. :/'
}
}
}
}
});
隐藏用于包含 SearchPanes 的 div
new DataTable('#myTable', {
layout: {
top1: {
searchPanes: {
i18n: {
emptyPanes: null
}
}
}
}
});