语言.stateRestore.creationModal
自:StateRestore 1.0.0 版起
设置在创建模态中显示的元素的文本。
请注意 - 此属性需要 DataTables 的 StateRestore 扩展。
描述
这是一个包含所有语言选项的对象,这些语言选项可完全自定义创建模态。对象中的所有语言选项都通过 i18n()
函数传递。
类型
默认值
- 值:
对象
此语言选项的默认值是一个对象,其中包含可在创建模态中所有文本进行国际化的字符串。此对象的默认值如下。
{
button: 'Create',
columns: {
search: 'Column Search:',
visible: 'Column Visibility:'
},
length: 'Page Length:'
name: 'Name:',
order: 'Sorting:',
paging: 'Paging:',
scroller: 'Scroll Position:',
search: 'Search:',
searchBuilder: 'SearchBuilder:',
searchPanes: 'SearchPanes:',
select: 'Select:',
title: 'Create New State',
}
示例
更改列搜索复选框标签的文本
new DataTable('#myTable', {
language: {
stateRestore: {
creationModal: {
columns: {
visible: 'Visible Columns:'
}
}
}
},
layout: {
topStart: {
buttons: [
{
extend: 'createState',
config: {
creationModal: true,
toggle: {
columns: {
visible: true
}
}
}
},
'savedStates'
]
}
}
});
相关
以下选项直接相关,在您的应用程序开发中也可能有用。