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
I am using a tree with checkboxes, and I only want checkboxes, not selection of nodes.
I've edited my local copy of the giglio.js to support this functionality. It's a 2 line change.
In gj.tree.methods.displayClickHandler, wrap the call to "select" in a conditional:
if ($tree.data('selectionType') !== 'none') { gj.tree.methods.select($tree, $node, cascade); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am using a tree with checkboxes, and I only want checkboxes, not selection of nodes.
I've edited my local copy of the giglio.js to support this functionality. It's a 2 line change.
In gj.tree.methods.displayClickHandler, wrap the call to "select" in a conditional:
The text was updated successfully, but these errors were encountered: