Questions tagged [ipyvuetify]
33 questions
0
votes
1 answer
buttons vs checkboxes behaviour in ipyvuetify different. Why?
I am arranging some ipyvuetify components as follows:
import ipyvuetify as vue
vue.Col(children=[vue.Checkbox(label='A'),vue.Checkbox(label='C'),vue.Checkbox(label='D')])
#and
vue.Col(children=[vue.Btn(label='A', children=['A']),vue.Btn(label='CS',…

JFerro
- 3,203
- 7
- 35
- 88
0
votes
1 answer
change appearance of multiline checkboxes with ipyvuetify
I would like to create a multiline checkbox with ipyvuetify:
v.Col(children=[vue.Checkbox(label='UNO'),vue.Checkbox(label='DOS'),vue.Checkbox(label='TRES'),vue.Checkbox(label='CUATRO')])
The result is as follows:
How do I modify the component in…

JFerro
- 3,203
- 7
- 35
- 88
0
votes
3 answers
ipyvuetify: How to limit width of TextField
I am trying to have an ipyvuetify Textfield for setting a one-digit number, but cannot limit the with of the text field to anything reasonable. A simple spinet of code e.g.
import ipyvuetify as v
#Textfield should be an one digit…

ntg
- 12,950
- 7
- 74
- 95