{hero}

colReorder.disable()

自:ColReorder 1.5.0 起

禁用 ColReorder 的交互。
请注意 - 此属性需要用于 DataTables 的 ColReorder 扩展。

说明

此方法可用于禁用 ColReorder 最终用户与 DataTable 之间的交互。

请注意,为了能够启用和禁用 ColReorder,colReorder 选项必须指定用于 DataTable 初始化。如果尚未使用 colReorder,则无法使用此方法来控制是否启用 ColReorder。

类型

函数 colReorder.disable()

说明

禁用最终用户对列进行重新排序的能力。

返回

DataTables API 实例

示例

使用按钮启用/禁用列重新排序

var table = new DataTable('#myTable', {
	colReorder: true
});

$('#enableReordering').on('click', function () {
	table.colReorder.enable(true);
});

$('#disableReordering').on('click', function () {
	table.colReorder.disable();
});

相关

以下选项直接相关,并且在应用程序开发中也可能有用。