multipleSelect函数中禁用多选和复选框的回调函数是什么
What is the callback function for disabling the multiple selection and checkbox in the multipleSelect function
我只想从下面的代码中禁用多选和复选框选项。是否有任何回调函数可用于此?
我的代码:
$('#denialCodesList-@viewId').multipleSelect({
isopen: true,
multipleWidth: 55,
filter: true
});
尝试在初始化时添加 selectAll:false。来自 docs
$('#denialCodesList-@viewId').multipleSelect({
isopen: true,
multipleWidth: 55,
filter: true,
selectAll: false,
});
我只想从下面的代码中禁用多选和复选框选项。是否有任何回调函数可用于此? 我的代码:
$('#denialCodesList-@viewId').multipleSelect({
isopen: true,
multipleWidth: 55,
filter: true
});
尝试在初始化时添加 selectAll:false。来自 docs
$('#denialCodesList-@viewId').multipleSelect({
isopen: true,
multipleWidth: 55,
filter: true,
selectAll: false,
});