javascript - 我可以将 jstree 复选框限制为只有有 child 的 parent 吗?

标签 javascript checkbox jstree

我想知道我是否可以只在有 child 但没有 child 的 parent 身上提供一个复选框。

是这样的。我可以选择一个 child ,或者选择所有 child 的 child 的直接 parent 。

parent01
    parent02
        parent03[]
            child01[]
            child02[]
            child03[]
                parent04[]
                    child04[]
        parent05[]
            child05[]
    parent06
        parent07
            parent08[]
                child06[]
                child07[]

最佳答案

这是一个遵循我之前回答的想法的工作示例 - 将有 child 的 parent 的可见性设置为隐藏。

为了防止通过单击节点来选中隐藏的复选框, 复选框插件属性 whole_nodetie_selection 应设置为 false

以下代码读取树数据并检查每个树节点,如果父节点有父节点——我们称它为祖父节点。 如果是这样,祖父节点复选框的 css 可见性属性将设置为隐藏

var to_hide = []; // ids of nodes that won't have checkboxes

/* get the tree data and find the nodes that have 
   children with children
*/
function getGrandparents() {
  // tree data
  var item = $('#data').jstree(true).get_json('#', {flat:true});
  console.log(JSON.stringify(item, undefined, 2));
  var parent, grandparent;
  // var nodeIds = item.map(x => x.id);  // ids of nodes in object item
  var nodeIds = item.map(function(x){return x.id;});  // ids of nodes in object item
  for (var i = 0; i < item.length; i += 1) {
    if (has_parent(item[i])) {
      parent = item[nodeIds.indexOf(item[i].parent)];
      if (has_parent(parent)) {
        grandparent = parent.parent + '_anchor';  // node with id grandparent is parent of parent
                                                  // and therefore shouldn't have a checkbox
        if (to_hide.indexOf(grandparent) < 0) {
          to_hide[to_hide.length] = grandparent;  // load id into array of checkboxes that will 
                                                  // be hidden
        }
      }
    }
  }
  function has_parent(who) {
    return ((typeof who.parent !== 'undefined') && (who.parent !== '#'));
  }
}

function hideGrandparents() {
  var gpa;
  // set visibility of checkbox nodes in to_hide to hidden
  for (var n = 0; n < to_hide.length; n += 1) {
    gpa = document.getElementById(to_hide[n]);
    if (gpa != null ) {
      gpa.getElementsByClassName('jstree-checkbox')[0].style.visibility = 'hidden';
    }
  }
}
  
$('#data').jstree({
  'core' : {
    'data' : [
      { "text" : "Root node",
        "children" : [
	      { "text" : "Child node 1 1", 
            "children" : [
              { "text" : "Child node 1 1 1" },
              { "text" : "Child node 1 1 2" }
            ] 
          },
          { "text" : "Child node 1 2",
            "children" : [
              { "text" : "Child node 1 2 1",
                "children" : [
                  { "text" : "Child node 1 2 1 1" },
                  { "text" : "Child node 1 2 1 2" }
                ]                
              },
              { "text" : "Child node 1 2 2" }
            ]          
          }
        ]
      },
      { "text" : "Root node 2",
        "children" : [
          { "text" : "Child node 2 1" },
        ]
      }
    ]
  },
  'checkbox': {
    three_state: false,
    whole_node: false,    // should be set to false. otherwise checking the hidden checkbox
                          // could be possible by clicking the node
    tie_selection: false, // necessary for whole_node to work
    cascade: 'up down'
  },
  'plugins': ["checkbox"]
}).on("ready.jstree", function() {
  getGrandparents();
  hideGrandparents();  // hide checkboxes of root nodes that have children with children
}).on("open_node.jstree", hideGrandparents);
<link href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.1.1/themes/default/style.min.css" rel="stylesheet"/>

<div id="data"></div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.3.7/jstree.min.js"></script>

关于javascript - 我可以将 jstree 复选框限制为只有有 child 的 parent 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54111414/

相关文章:

java - 最好的 RESTful JavaScript API 是什么?

javascript - 复选框的 jQuery onclick 错误

javascript - jstree - 如何启用文件夹和文件操作?

javascript - jsTree (3.x) ajax 配置处理程序只运行一次?

javascript - Twig 到 Js 的数据不完整数组

javascript - Google Apps 脚本 HTML 服务的新功能

javascript - 构造函数继承;我没有得到什么?

Android ExpandableListView 在 ChildView 有单选 CheckBox

javascript - Angular Js-有没有办法动态生成也预先选择的复选框?

jstree 获取root的所有子节点