We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e63c020 commit f3927dcCopy full SHA for f3927dc
assets/plugins/features/editable.ts
@@ -110,7 +110,10 @@ export class EditablePlugin implements DatagridPlugin {
110
"input, textarea, select"
111
)
112
.forEach(el => {
113
- el.addEventListener("blur", () => submitCell(el));
+ if (!(el instanceof HTMLSelectElement)) {
114
+ el.addEventListener("blur", () => submitCell(el));
115
+ }
116
+
117
el.addEventListener("keydown", e => {
118
if (isEnter(e as KeyboardEvent)) {
119
e.stopPropagation();
0 commit comments