FR10参数栏求个控制下拉复选框最多选择5个选项的js及如何配置,或者去掉上面的全选/不选的js也可以
var a=this.getValue();
if(a.length>5){
alert("不能大于五")
}
若选择字符串
if(a..split(",").length>5){
下拉复选框的全选/不选怎么去掉选择下拉框,然后选择事件,添加一个初始化事件,写一下js语句。$.extend(FR.CheckBoxEditor.prototype,{initControlPane:function(){this.$controlPane = $("<div style='padding-right:20px'>").addClass('fr-checkbox-control').css('display',"none");}});
下拉复选框的全选/不选怎么去掉
选择下拉框,然后选择事件,添加一个初始化事件,写一下js语句。$.extend(FR.CheckBoxEditor.prototype,{initControlPane:function(){this.$controlPane = $("<div style='padding-right:20px'>").addClass('fr-checkbox-control').css('display',"none");}});
JS限制复选框选中个数-https://help.fanruan.com/finereport10.0/doc-view-1212.html
=========
下拉复选框单个控件的全选/不选的隐藏(控件编辑前事件) :$(".fr-checkbox-control").hide()