Skip to content
New issue

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

How to override select all checkbox with a custom input in ngx-treeView? #299

Open
alabanu opened this issue Aug 11, 2021 · 1 comment
Open

Comments

@alabanu
Copy link

alabanu commented Aug 11, 2021

I am using ngx-treeView "select all" functionality and I want to use a custom input or slide button to override select all event.
Stackblitz

Thanks in advance

@majid99h
Copy link

pass treeview data in this function

checkAll(items) {
  items.forEach((element: any) => {
    element.checked = true;
    element.collapsed = true;
    if (element.internalChildren) {
      this.checkAll(element.internalChildren);
    }
  });
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants