-
Notifications
You must be signed in to change notification settings - Fork 59
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
Cannot use different value and text in CombBox #117
Comments
This is how Vuetify works, ipyvuetify does not change this. This makes it not very usable with |
Are you sure that it's normal vuetify behaviour ? tutu = v.Select(items=climate_regimes, v_model=None) then |
It's indeed different for Select. I see now it's because of the prop |
Is this solved by setting |
yes and no. with : tutu = v.Combobox(items=climate_regimes, v_model=None, return_object = False) I effectively get the |
If I read the documentation of Combobox, The items property can be a list of dict as :
when I use it in a ipyvuetify as such :
but when I check
tutu.v_model
after selecting the first option, I get:{'text': 'Temperate dry (coef = 0.8)', 'value': 0.80}
instead of the expected0.8
The text was updated successfully, but these errors were encountered: