xstファイルに基づいてツリーを埋め込むためにjstreeプラグインを使用しています。いくつかのノードのテキストはコンテナdivより大きい。テキストをjstreeノードテキストで折り返す方法はありますか?jstreeにリーフテキストをラップする
$(document).ready(function(){
$("#tree").jstree({
"xml_data" : {
"ajax" : {
"url" : "jstree.xml"
},
"xsl" : "nest"
},
"themes" : {
"theme" : "classic",
"dots" : true,
"icons" : true
},
"search" : {
"case_insensitive" : true,
"ajax" : {
"url" : "jstree.xml"
}
},
"plugins" : ["themes", "xml_data", "ui","types", "search"]
}).bind("select_node.jstree", function (event, data) {
$("#tree").jstree("toggle_node", data.rslt.obj);
ありがとうございます。優れた仕事です。 –
ありがとうございます!それは私のために完全に動作します! – Tung