multiline cell editor #378 #371 #359

This commit is contained in:
Jan Prochazka
2022-09-25 08:58:39 +02:00
parent a56f59ceba
commit 7fc8b2901b
8 changed files with 91 additions and 33 deletions

View File

@@ -154,6 +154,7 @@
export let menu = null;
export let readOnly = false;
export let splitterOptions = null;
export let onKeyDown = null;
const tabVisible: any = getContext('tabVisible');
@@ -297,6 +298,7 @@
const handleKeyDown = (data, hash, keyString, keyCode, event) => {
if (event) handleCommandKeyDown(event);
if (onKeyDown && event) onKeyDown(event);
};
function changedQueryParts() {