欢迎来到代码驿站!

jquery

当前位置:首页 > 网页前端 > jquery

EasyUI 中combotree 默认不能选择父节点的实现方法

时间:2021-04-25 10:11:06|栏目:jquery|点击:

这需要添加如下字段就行,搜了半天,说什么判断是不是子节点什么的,都是胡扯!

onlyLeafCheck:true,
//病因分类 
$('#artReason').combotree({
width:200,
method:'GET',
  //url: '${ctx}/business/dict/json/DicEtilolgy',
  data:DicEtilolgy_data,
  idField : 'id',
  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;//将从头位置匹配改为任意匹配 
//   },
});

上一篇:Jquery实现页面加载时弹出对话框代码

栏    目:jquery

下一篇:jquery 学习之二 属性 文本与值(text,val)

本文标题:EasyUI 中combotree 默认不能选择父节点的实现方法

本文地址:http://www.codeinn.net/misctech/108434.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有