easyui 中的 tree

Posted 你若盛开

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui 中的 tree相关的知识,希望对你有一定的参考价值。

$(function() {
        resourceTree = $(‘#resourceTree‘).tree({//json格式
            url : ‘‘,
            parentField : ‘pid‘,
            //lines : true,
            checkbox : true,
            onClick : function(node) {
            },
            onLoadSuccess : function(node, data) {
                var ids = $.stringToList(‘${info.ids}‘);//当前页面返回逗号隔开
                if (ids.length > 0) {
                    for ( var i = 0; i < ids.length; i++) {
                        if (resourceTree.tree(‘find‘, ids[i])) {
                            resourceTree.tree(‘check‘, resourceTree.tree(‘find‘, ids[i]).target);
                        }
                    }
                }
                $(‘#‘).layout(‘panel‘, ‘west‘).panel(‘setTitle‘, $.formatString(‘‘, ‘${info.name}‘));
                parent.$.messager.progress(‘close‘);
            },
            cascadeCheck : false
        });

<form id="form" method="post">
                <input name="id" type="hidden" class="span2" value="${info.id}" readonly="readonly">
                <ul id="resourceTree"></ul>
                <input id="resourceIds" name="resourceIds" type="hidden" />
            </form>

以上是关于easyui 中的 tree的主要内容,如果未能解决你的问题,请参考以下文章

easyui combobox中的值是从数据库拿过来的,编辑easyui gridveiw时combobox定位gridveiw对应值

如何能实现easyui-combobox中的值change事件?

jQuery中的easyui

怎么给easyui中的datagrid加水平滚动条

easyui中的基本验证大全

easyui页面数据显示的问题