Replies: 1 comment
-
See #207. I posted a proof-of-concept that may be helpful. Essentially, you need to break reference for the collection passed to |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Unable to Lazy load clr tree children inside clr tree on clicking a button
get getChildren() {
if (this.nodedata.children.children.length > 7) {
let data = this.nodedata.children[6].children.slice(0, 5);
return data;
}
return this.nodedata.children;
Beta Was this translation helpful? Give feedback.
All reactions