语言。stateRestore。creationModal。columns。search
从:StateRestore 1.0.0
设置创建模态对话框中列搜索复选框标签的文本。
请注意 - 此属性需要针对 DataTables 的 StateRestore 扩展。
描述
此字符串显示在复选框旁边的标签中,其中允许在创建状态时所显示的创建模态对话框中切换特定列搜索状态的保存。
此处设置的值将通过 i18n()
函数传递。
类型
默认
- 值:
列搜索
范例
更改列搜索复选框标签的文本
new DataTable('#myTable', {
language: {
stateRestore: {
creationModal: {
columns: {
search: 'Searching:'
}
}
}
},
layout: {
topStart: {
buttons: [
{
extend: 'createState',
config: {
creationModal: true,
toggle: {
search: true
}
}
},
'savedStates'
]
}
}
});
相关
以下选项是直接相关的,也可能对您的应用程序开发有用。