选择下拉复选框,然后选择事件,添加一个初始化事件,写一下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");
}
});