DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery入門技巧 >> EasyUI 中combotree 默認不能選擇父節點的實現方法
EasyUI 中combotree 默認不能選擇父節點的實現方法
編輯: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;//將從頭位置匹配改為任意匹配 
//   },
});

以上這篇EasyUI 中combotree 默認不能選擇父節點的實現方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved