{英雄}

语 言.按 钮.状 态 还 原

自:StateRestore 1.0.0 起

设置 StateRestore stateRestore 分割下拉按钮中的文本。
请注意 - 此属性需要 DataTables 的 StateRestore 扩展。

描述

此字符串显示在 StateRestore 的 stateRestore 按钮中。按钮的完整文档位于 renameState

此处,字符串中的 %d 标记将替换为创建的已保存状态数,包括此状态。这允许当创建更多状态时,状态的默认名称发生主动更改。

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

类型

字符串

描述

将显示在其 StateRestore stateRestore 分割下拉按钮中的字符串。

默认

  • 值:状态 %d

示例

更改 savedStates 按钮内的文本

new DataTable('#myTable', {
	language: {
		buttons: {
			stateRestore: 'State Number %d'
		}
	},
	layout: {
		topStart: {
			buttons: ['createState', 'savedStates']
		}
	}
});

相关

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