not show list in jstree and angular











up vote
0
down vote

favorite












I need to Show all Role in Angular6 with Jstree.



I get All List From server but it does not show Me Anything.



how can i Solve this Problem?



My code:



Config in Index:



<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/themes/default/style.min.css" />
<title>StoreAp</title>
<base href="/">
</head>
<body>
<app-root></app-root>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/jstree.min.js"></script>
</body>
</html>


HTML :



<div class="addRole">
<div id="jstree">

</div>
</div>
<script>

$('#jstree').on('changed.jstree',function(data){
var i,j;
var postItem =;
j=data.selected.lenght;
for( i=0 ; i<j ; i++ )
{
var id=data.selected[i];
postItem.push({
text:data.instanse.get_node(data.selected[i]).text,
id:id,
parent:data.node.parents[0]
});
}
$('#selectedItems').val(JSON.stringify(postItem));
}).jstree({
"core":{
"theme":{
"variant":"large"
},
"data":subroles
},
"checkbox":{
"keep_selected_style":false
},
"plugin":["wholerow"]

});

</script>


and in .TS file



export class AccessLevelComponent implements OnInit {

public subroles:Isubrole;

constructor(private roleService:RoleServiceService) { }

ngOnInit() {
this.roleService.GetSubrole().subscribe((data)=>{
this.subroles=data;
});

}
}









share|improve this question









New contributor




Kianoush is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • i suggest you to use jstree in angular as mentioned in this accepted answer:stackoverflow.com/questions/44987260/….
    – Fateme Fazli
    yesterday










  • @FatemeFazli i see that . its not work for me
    – Kianoush
    yesterday















up vote
0
down vote

favorite












I need to Show all Role in Angular6 with Jstree.



I get All List From server but it does not show Me Anything.



how can i Solve this Problem?



My code:



Config in Index:



<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/themes/default/style.min.css" />
<title>StoreAp</title>
<base href="/">
</head>
<body>
<app-root></app-root>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/jstree.min.js"></script>
</body>
</html>


HTML :



<div class="addRole">
<div id="jstree">

</div>
</div>
<script>

$('#jstree').on('changed.jstree',function(data){
var i,j;
var postItem =;
j=data.selected.lenght;
for( i=0 ; i<j ; i++ )
{
var id=data.selected[i];
postItem.push({
text:data.instanse.get_node(data.selected[i]).text,
id:id,
parent:data.node.parents[0]
});
}
$('#selectedItems').val(JSON.stringify(postItem));
}).jstree({
"core":{
"theme":{
"variant":"large"
},
"data":subroles
},
"checkbox":{
"keep_selected_style":false
},
"plugin":["wholerow"]

});

</script>


and in .TS file



export class AccessLevelComponent implements OnInit {

public subroles:Isubrole;

constructor(private roleService:RoleServiceService) { }

ngOnInit() {
this.roleService.GetSubrole().subscribe((data)=>{
this.subroles=data;
});

}
}









share|improve this question









New contributor




Kianoush is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • i suggest you to use jstree in angular as mentioned in this accepted answer:stackoverflow.com/questions/44987260/….
    – Fateme Fazli
    yesterday










  • @FatemeFazli i see that . its not work for me
    – Kianoush
    yesterday













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I need to Show all Role in Angular6 with Jstree.



I get All List From server but it does not show Me Anything.



how can i Solve this Problem?



My code:



Config in Index:



<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/themes/default/style.min.css" />
<title>StoreAp</title>
<base href="/">
</head>
<body>
<app-root></app-root>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/jstree.min.js"></script>
</body>
</html>


HTML :



<div class="addRole">
<div id="jstree">

</div>
</div>
<script>

$('#jstree').on('changed.jstree',function(data){
var i,j;
var postItem =;
j=data.selected.lenght;
for( i=0 ; i<j ; i++ )
{
var id=data.selected[i];
postItem.push({
text:data.instanse.get_node(data.selected[i]).text,
id:id,
parent:data.node.parents[0]
});
}
$('#selectedItems').val(JSON.stringify(postItem));
}).jstree({
"core":{
"theme":{
"variant":"large"
},
"data":subroles
},
"checkbox":{
"keep_selected_style":false
},
"plugin":["wholerow"]

});

</script>


and in .TS file



export class AccessLevelComponent implements OnInit {

public subroles:Isubrole;

constructor(private roleService:RoleServiceService) { }

ngOnInit() {
this.roleService.GetSubrole().subscribe((data)=>{
this.subroles=data;
});

}
}









share|improve this question









New contributor




Kianoush is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I need to Show all Role in Angular6 with Jstree.



I get All List From server but it does not show Me Anything.



how can i Solve this Problem?



My code:



Config in Index:



<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/themes/default/style.min.css" />
<title>StoreAp</title>
<base href="/">
</head>
<body>
<app-root></app-root>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/jstree.min.js"></script>
</body>
</html>


HTML :



<div class="addRole">
<div id="jstree">

</div>
</div>
<script>

$('#jstree').on('changed.jstree',function(data){
var i,j;
var postItem =;
j=data.selected.lenght;
for( i=0 ; i<j ; i++ )
{
var id=data.selected[i];
postItem.push({
text:data.instanse.get_node(data.selected[i]).text,
id:id,
parent:data.node.parents[0]
});
}
$('#selectedItems').val(JSON.stringify(postItem));
}).jstree({
"core":{
"theme":{
"variant":"large"
},
"data":subroles
},
"checkbox":{
"keep_selected_style":false
},
"plugin":["wholerow"]

});

</script>


and in .TS file



export class AccessLevelComponent implements OnInit {

public subroles:Isubrole;

constructor(private roleService:RoleServiceService) { }

ngOnInit() {
this.roleService.GetSubrole().subscribe((data)=>{
this.subroles=data;
});

}
}






javascript jquery angular angular6 jstree






share|improve this question









New contributor




Kianoush is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Kianoush is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited yesterday









Fateme Fazli

3,608527




3,608527






New contributor




Kianoush is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked yesterday









Kianoush

53




53




New contributor




Kianoush is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Kianoush is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Kianoush is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • i suggest you to use jstree in angular as mentioned in this accepted answer:stackoverflow.com/questions/44987260/….
    – Fateme Fazli
    yesterday










  • @FatemeFazli i see that . its not work for me
    – Kianoush
    yesterday


















  • i suggest you to use jstree in angular as mentioned in this accepted answer:stackoverflow.com/questions/44987260/….
    – Fateme Fazli
    yesterday










  • @FatemeFazli i see that . its not work for me
    – Kianoush
    yesterday
















i suggest you to use jstree in angular as mentioned in this accepted answer:stackoverflow.com/questions/44987260/….
– Fateme Fazli
yesterday




i suggest you to use jstree in angular as mentioned in this accepted answer:stackoverflow.com/questions/44987260/….
– Fateme Fazli
yesterday












@FatemeFazli i see that . its not work for me
– Kianoush
yesterday




@FatemeFazli i see that . its not work for me
– Kianoush
yesterday

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






Kianoush is a new contributor. Be nice, and check out our Code of Conduct.










 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53349259%2fnot-show-list-in-jstree-and-angular%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes








Kianoush is a new contributor. Be nice, and check out our Code of Conduct.










 

draft saved


draft discarded


















Kianoush is a new contributor. Be nice, and check out our Code of Conduct.













Kianoush is a new contributor. Be nice, and check out our Code of Conduct.












Kianoush is a new contributor. Be nice, and check out our Code of Conduct.















 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53349259%2fnot-show-list-in-jstree-and-angular%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Create new schema in PostgreSQL using DBeaver

Deepest pit of an array with Javascript: test on Codility

Costa Masnaga