language.stateRestore.creationModal.searchPanes
自:StateRestore 0.0.1
设置 searchPanes
复选框标签中用于创建模式的文本。
请注意 - 此属性需要 DataTables 的 StateRestore 扩展程序。
说明
此字符串显示在允许切换在创建状态时显示的状态中的 searchPanes
的复选框相邻的标签内。此处设置的值将通过 i18n()
函数传递。
类型
默认值
- 值:
SearchPanes
示例
更改 searchPanes 复选框标签文本
new DataTable('#myTable', {
language: {
stateRestore: {
creationModal: {
searchPanes: 'Search Filter:'
}
}
},
layout: {
topStart: {
buttons: [
{
extend: 'createState',
config: {
creationModal: true,
toggle: {
searchPanes: true
}
}
},
'savedStates'
]
}
}
});
相关内容
以下选项直接相关,在您的应用程序开发中也可能非常有用。