disabled q-item not disabling click on q-item-section
-
disabled q-item not disabling click on q-item-section, if we click on disabled q-item then also @click is getting called.
<q-item :disable="true" tag="label" v-ripple v-close-popup > <q-item-section> <q-item-label @click="something()" >Update</q-item-label> </q-item-section> </q-item>
-
This post is deleted! -
disabled q-item not disabling click on q-item-section, if we click on disabled q-item then also @click is getting called.
Disabled does not prevent click events. @click also still triggers on q-item see:
-
@dobbel Yes, but it should prevent by default. As of now I am doing this
@click="!isdisabled && something()"
-
@jitendra16 report it to repo or you could pr to it,
no-pointer-events
should prevent the clicks and visual ripple even on disable state. -
Esse problema foi solucionado? estou com essa dúvida…
Has this problem been solved?I have this doubt…