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
When setting a parent to disabled, it will not open or close, seems like an issue here as it works fine in pure vuetify.
import ipyvuetify as v items = [{ 'id': 1, 'name': 'Applications :', 'disabled':False, 'children': [ { 'id': 2, 'name': 'Calendar', 'disabled':True }, { 'id': 3, 'name': 'Chrome' }, { 'id': 4, 'name': 'Webstorm', 'disabled':True, 'children': [ { 'id': 5, 'name': 'Test'}]}, ], }] v.Treeview(items=items, selectable=True, item_disabled='disabled', v_model=[2])
The text was updated successfully, but these errors were encountered:
It is a bug in the version of Vuetify (v2.2.26) which is used by ipyvuetify.
Sorry, something went wrong.
No branches or pull requests
When setting a parent to disabled, it will not open or close, seems like an issue here as it works fine in pure vuetify.
The text was updated successfully, but these errors were encountered: