{hero}

language.stateRestore.creationModal.button

自:StateRestore 1.0.0

设置 StateRestore 创建模态按钮中的文本。
请注意 - 此属性需要 DataTables 的 StateRestore 扩展。

描述

此字符串会显示在创建模态确认按钮中,此类模态会在创建状态时显示。

此处设置的值通过 i18n() 函数进行传递。

类型

字符串

描述

将显示在创建模态中按钮内的字符串。

默认值

  • 值:创建

示例

更改创建确认按钮中的文本

new DataTable('#myTable', {
	language: {
		stateRestore: {
			creationModal: {
				button: 'Create a new state'
			}
		}
	},
	layout: {
		topStart: {
			buttons: [
				{
					extend: 'createState',
					config: {
						creationModal: true
					}
				},
				'savedStates'
			]
		}
	}
});

相关

以下选项直接相关,在您的应用程序开发中可能也会很有用。