Home > Web Front-end > JS Tutorial > EasyUi combotree implements dynamic loading of tree nodes_javascript skills

EasyUi combotree implements dynamic loading of tree nodes_javascript skills

WBOY
Release: 2016-05-16 15:06:54
Original
1704 people have browsed it

Recommended reading:

Introduction to the implementation of EasyUI datagrid editor combogrid search box

Combogrid in EasyUi implements paging and dynamic search of remote data

The example of easyui 1.2.4 does not give an example of dynamically loading tree nodes, so I have to study it myself.

It can be seen from the source code that combotree inherits the two controls combo and tree, so when expanding its subordinate child nodes, the url of the options option of the tree built in combotree is reset to a url that dynamically takes the selected value. The code is as follows:

$('#cc').combotree({
url:"treejson.aspx?act=allregion&parentid=0", 
onBeforeExpand:function(node){
$('#cc').combotree("tree").tree("options").url= "treejson.aspx?act=allregion&parentid=" + node.id;
}
}); 
Copy after login

The above content is the knowledge about EasyUi combotree implemented by the editor to dynamically load tree nodes. I hope it will be helpful to everyone!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template