3

我知道有一个名为 jquery.tree.checkbox.js 的 jsTree 插件。使树节点多可检查。

我只是想知道是否有一个插件来raido检查树节点?或者我该如何修改 jquery.tree.checkbox.js 来实现?

4

5 回答 5

6

这可以简单地通过添加属性来完成

    rules:{
            multiple : false
          } 

在树的配置里面。这将使得无法选择多个条目。

于 2010-06-04T13:44:33.483 回答
5

@Asaf 的答案似乎不再适用于 2016 年的 3.3.1 版。您现在需要multiple设置core

$jstree.jstree({
    core: {
        multiple: false,
        ...
    }
});
于 2016-05-18T22:52:36.797 回答
5

设置multiple:false仍将允许级联,因此您也需要将其关闭。

版本3.3.3

$(".tree").jstree({
    plugins: ["checkbox"],
    core: {
        data: ...,
        multiple: false
    },
    checkbox: {
        three_state: false,
        cascade: "none"
    }
});
于 2017-01-27T18:43:06.180 回答
2

单选按钮选项仍未释放,因此您必须将复选框选项更改为单选。

bind('check_node.jstree', function(e, data) {
    var currentNode = data.rslt.obj.attr("id");
    $("#tree").jstree("get_checked",null,true).each 
        (function () { 
            if(currentNode != this.id){
                jQuery.jstree._reference($("#tree")).uncheck_node('#'+this.id);
            }
        }); 
});

参考这个http://jsfiddle.net/bwTrP/1/

于 2013-04-19T06:39:00.963 回答
1

使用带有复选框插件的 jsTree 3.2.1 版,可以模拟处理“更改”事件的单选按钮行为,如下所示:

//jstree configuration:
'checkbox': {
    three_state: false, //required for the cascade none to work
    cascade: 'none' //no auto all_children<->parent selection
},
//...

var resetting = false;
$('#tree').on('changed.jstree', function (e, data) {
    if (resetting) //ignoring the changed event
    {
        resetting = false;
        return;
    }
    if ($("#multiselect").is(':checked') == false && data.selected.length > 1) {
        resetting = true; //ignore next changed event
        data.instance.uncheck_all(); //will invoke the changed event once
        data.instance.check_node(data.node/*currently selected node*/);
    }
});

JSFiddle:使用复选框插件的 JSTree 单选按钮行为示例

于 2015-09-30T09:05:31.817 回答