语言.stateRestore.creationModal.name
从 stateRestore 1.0.0 起
设置创建模态框中名称输入标签的文本。
请注意,此属性需要 stateRestore 扩展来支持 DataTables。
描述
此字符串显示在允许自定义名称的输入旁边的标签内,该名称将使用 StateRestore 中的 creationModal
选项在创建新状态时显示的创建模态框中设置,请参阅
。stateRestoreConfig
此处设置的值通过 i18n()
函数进行传递。
类型
此选项可以使用以下类型给出
默认值
- 值:
名称:
示例
更改名称输入标签的文本
new DataTable('#myTable', {
language: {
stateRestore: {
creationModal: {
name: 'State Name:'
}
}
},
layout: {
topStart: {
buttons: [
{
extend: 'createState',
config: {
creationModal: true
}
},
'savedStates'
]
}
}
});
相关
以下选项与之直接相关,在您的应用程序开发中可能也很有用。