下拉复选框的全选

能不能去掉这个全选啊 2万多的选择项 使用自带的全选太难受了 我自己加了个全选字段 ,选到加的字段 就跳过这个条件 。

image.png

FineReport pengfuqiang96 发布于 2020-12-10 10:17
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共1回答
最佳回答
1
snrtuemcLv8专家互助
发布于2020-12-10 10:20
选择下拉复选框,然后选择事件,添加一个初始化事件,写一下js语句。
$.extend(FR.CheckBoxEditor.prototype,{
initControlPane:function(){
this.$controlPane = $("").addClass('fr-checkbox-control').css('display',"none");
}
}); 
或者
$.extend(FR.CheckBoxEditor.prototype,{
initControlPane:function(){
this.$controlPane = $("<div style='padding-right:20px'>").addClass('fr-checkbox-control').css('display',"none");
}
});


  • 2关注人数
  • 744浏览人数
  • 最后回答于:2020-12-10 10:20
    请选择关闭问题的原因
    确定 取消
    返回顶部