java中的接口是类吗
340
2023-06-30
EasyUI 中combotree 默认不能选择父节点的实现方法
这需要添加如下字段就行,搜了半天,说什么判断是不是子节点什么的,都是胡扯!
onlyLeafCheck:true,
//病因分类
$('#artReason').combotree({
width:200,
method:'GET',
//url: '${ctx}/business/dict/json/DicEtilolgy',
data:DicEtilolgy_data,
idField : 'id'VqlQVDMYR,
textFiled : 'name',
parentField : 'pid',
animate:true,
mode:'local',
multiple: true,
onlyLeafCheck:true,
onbeforeselect:function(node){
debugger;
alert(node.state);
if(node.state){
$("#artReason").tree("unselect");
}
},
onClick:function(data){
return;
debugger;
},
onLoadSuccess:function(node,data){
// $("#artReason").combotree('setValue',['11','12']);
},
// onSelect : function(node) {
// debugger;
// if(parseInt(node.id)<10){
// $('#artReason').combotree('clear');
// return;
// }
// //返回树对象
// var tree = $(this).tree;
// //选中的节点是否为叶子节点,如果不是叶子节点,清除选中
// var isLeaf = tree('isLeaf', node.target);
// if (!isLeaf) {
// //清除选中
// $('#artReason').combotree('clear');
// }
// },
onChange:function(newValue, oldValue) {
debugger;
},
// filter:function(q,row){
// debugger;
// var opts=$(this).combobox("options");
// return row[opts.textField].indexOf(q)>-1;//将从头位置匹配改为任意匹配
// },
});
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~