Replies: 1 comment 13 replies
-
with vuetify.VTooltip(text="Tooltip") as elem_to_test:
with vuetify.Template(v_slot_activator="{ props }"):
vuetify.VCheckbox(
v_bind="props"
v_model=("list_change", True),
on_icon="mdi-account-check",
off_icon="mdi-account-check-outline",
classes="mx-1",
hide_details=True,
dense=True,
click=reset_resolution,
)
print(elem_to_test.html) # <--- That way you can see if it match what the vuetify doc is telling you |
Beta Was this translation helpful? Give feedback.
13 replies
Answer selected by
bigfooted
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I placed this question in paraview discourse but I think this it the better place to ask :
suppose I have a simple checkbox in trame. How can I add a tooltip text when I hover over the box? I do not know how I can translate the explanation on the vuetify website into trame functionality.
The vuetify site gives for instance this example:
and I have a simple checkbox like this:
I have to add a v_tooltip and a v_bind?
Beta Was this translation helpful? Give feedback.
All reactions