Difference between "change" and "end" in VSlider #490
-
I have a series of VSlider defined as:
The sliders control the translation and rotation of an object. I want the object to update as I move the sliders. I have the following update function:
Why is the behavior similar to the "end" event? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
That is what is described in the vuetify documentation for that component. If you want constant update you need to use Instead simply listen on "tx" change. That will happen continuously while not over subscribing the server. @state.change("tx")
def OnTransformSliderChange(tx, **kwargs):
... |
Beta Was this translation helpful? Give feedback.
That is what is described in the vuetify documentation for that component.
If you want constant update you need to use
input=OnTransformSliderChange
. But I would not recommend doing that.Instead simply listen on "tx" change. That will happen continuously while not over subscribing the server.