We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
예를 들어 tree의 root가 C 로 되어 있으면 D 라는 루트를 추가하고 싶습니다.
tree_directory = tree("#tree_directory .tree", { root: { title:"C" },
function addDirectory(){ tree_directory.???({ title: "D" }); }
이런식으로 이벤트형식을 통해 루트를 추가하고 싶은데 어떻게 해야하는지 조언 부탁드립니다.
The text was updated successfully, but these errors were encountered:
append나 insert 메소드 사용하시면 되요. https://github.com/juijs/jui/blob/develop/js/tree.js
여기서 this로 시작하는 메소드 참고하시면 됩니다.
Sorry, something went wrong.
샘플도 있습니다. 참고해주세요. http://uiplay.jui.io/?p=tree_1
C의 하위 디렉토리가 아닌 개별의 D 루트를 만드는건 불가능한가요?
rootHide라고 루트를 숨기는 옵션이 있습니다. true로 설정하면 하위노드들이 다 루트처럼 보이게됩니다.
No branches or pull requests
예를 들어 tree의 root가 C 로 되어 있으면 D 라는 루트를 추가하고 싶습니다.
tree_directory = tree("#tree_directory .tree", {
root: { title:"C" },
function addDirectory(){
tree_directory.???({ title: "D" });
}
이런식으로 이벤트형식을 통해 루트를 추가하고 싶은데 어떻게 해야하는지 조언 부탁드립니다.
The text was updated successfully, but these errors were encountered: