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

disabled parents in treeview will not open #83

Open
TermeHansen opened this issue Jul 17, 2020 · 1 comment
Open

disabled parents in treeview will not open #83

TermeHansen opened this issue Jul 17, 2020 · 1 comment
Labels
bug Something isn't working

Comments

@TermeHansen
Copy link

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])

image

@mariobuikhuizen mariobuikhuizen added the bug Something isn't working label Aug 26, 2021
@mariobuikhuizen
Copy link
Collaborator

It is a bug in the version of Vuetify (v2.2.26) which is used by ipyvuetify.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants