Replies: 1 comment 2 replies
|
This sounds like a known side effect of Vuetify 4's migration to native For the inline-edit-in-table pattern specifically, what's probably happening:
Two things that fixed this for me in similar setups:
function onBlur() {
setTimeout(() => {
if (!cellRef.value?.contains(document.activeElement)) {
editing.value = false
}
}, 150)
}
Are you seeing this with all input types (v-text-field, v-select, v-autocomplete) or only specific ones? |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I'm wondering, if the emitted
update:focusedevents had some change from vuetify 3 to version 4.I have a table, which on cell-click (or dblclick) renders an edit control in the cell, and which changes back to display the formatted value on blur.
But since upgrading to vuetify 4, I often get a
blurimmediately after starting the edit, or opening the menu of a select, ...Anybody an idea what changed?
All reactions