我正在使用bootstrap Multiselect
,当用户使用向下箭头(键盘)在多选中的选项中导航时,我正面临问题,它选择了选项而不选择checbox
这是我的代码
$(function () {
$('[id*=lstSecondaryComment]').multiselect({
includeSelectAllOption: true,
numberDisplayed: 0,
buttonWidth: '200px',
numberDisplayed: 0
}
);
});
im appyling multislect to Listbox (ASP.NET)
,我想要停用导航箭头,或者它应该在列表中选择checkbox
任何帮助Appriciated
谢谢。答案 0 :(得分:0)
如果您还没有,请添加:
<script type="text/javascript">
$(document).ready(function(){
$('#lstSecondaryComment').multiselect();
});
</script>
如果您包含html标记以及包含相关插件的位置,那么也会更有见地。