language.stateRestore.creationModal.title
自:StateRestore 1.0.0
设置创建模态的标题文本。
请注意,此属性需要 DataTables 的 StateRestore 扩展。
说明
该字符串显示为正在创建状态时所显示的创建模态中的标题。
此处设置的值通过 i18n()
函数传递。
类型
默认
- 值:
创建新状态
示例
更改搜索复选框标签的文本
new DataTable('#myTable', {
language: {
stateRestore: {
creationModal: {
title: 'New State:'
}
}
},
layout: {
topStart: {
buttons: [
{
extend: 'createState',
config: {
creationModal: true
}
},
'savedStates'
]
}
}
});
相关信息
以下选项直接相关,也可能有助于您的应用程序开发。