0
처음으로 jstree
을 사용하여 시작했으며 json/PHP
으로 시작했으며 체크 박스에 $array['mynewkey']
의 값을 설정하는 방법을 알고 싶습니다. 어떻게받을 수 있습니까? 새 노드 이름을 jstree에 추가하십시오.
이
내 코드입니다 : 당신은이 샘플을 시도 할 수 있습니다<script type="text/javascript">
(function($){
// check in php file or dir and create another array varible called extension contain file/dir value
// switch the extention variable here
$('#tree-container').jstree({
"plugins" : ["contextmenu", "types", "wholerow","checkbox"],
'core' : {
'data' : <?php echo json_encode($array); ?>
}
});
})(jQuery132);
</script>