{hero}

select.selectable()

自:Select 2.1.0

获取/设置用于确定是否可选行的函数。
请注意 - 此属性需要 DataTables 的 Select 扩展。

说明

此方法允许动态指定 select.selectable 函数,用于确定是否可选行。

类型

函数 select.selectable()

说明

获取用于确定是否可选行的函数。

返回值

返回使用此方法设置的函数或 select.selectable。如果未定义函数,则返回 undefined

函数 select.selectable( set )

说明

设置表的可选函数。

参数
返回值

用于连接的数据表 API 实例。

示例

使用 os 选择样式允许用户选择项目

let table = new DataTable('#myTable', {
	select: true
});

table.select.selectable((data, tr, idx) => {
	return data.selectable;
});

相关

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