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
My normalizer looks like this: normalizer(node) { return { id: node.id, label: node.name, children: node.child?.data, }; }
normalizer(node) { return { id: node.id, label: node.name, children: node.child?.data, }; }
and I use both LOAD_CHILDREN_OPTIONS and ASYNC_SEARCH
when I set at case of LOAD_CHILDREN_OPTIONS this: parentNode.child = { data: children }; or that: parentNode.child.data = children;
and then callback();
normalizer does not work and it says No sub-options all the time.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My normalizer looks like this:
normalizer(node) { return { id: node.id, label: node.name, children: node.child?.data, }; }
and I use both LOAD_CHILDREN_OPTIONS and ASYNC_SEARCH
when I set at case of LOAD_CHILDREN_OPTIONS
this:
parentNode.child = { data: children };
or that:
parentNode.child.data = children;
and then
callback();
normalizer does not work and it says No sub-options all the time.
The text was updated successfully, but these errors were encountered: