$("#demo1").tree({
ui : {
theme_name : "checkbox"
},
data : {
type : "json",
async: true,
opts : {
url : "treedata?dimId=1&dimValId=0"
}
},
callback : {
onsearch : function (n,t) {
t.container.find('.search').removeClass('search');
n.addClass('search');
}
},
plugins : {
checkbox : { }
}
});