jstree
MVC4 アプリケーションで、フォルダーとjquery.jstree.js
スクリプト ファイルを適切に動作させるには、どこに配置すればよいですか?
Scripts または Content フォルダーに jstree フォルダーを配置すると、ロード中の画像のみが表示され、ツリー ノードは表示されません。
私のコードは次のとおりです。
$(function () {
var $treeview = $('#demo1');
$treeview.jstree({
'themes':
{
theme: "default",
dots: true,
icons: true,
url: "/Content/jsTree/themes/default/style.css"
},
'plugins': ['themes', 'ui', 'crrm', 'dnd']
})
.on('loaded.jstree', function () {
$treeview.jstree('open_all');
});
});