From 7c6f06e19483c66e737ce17aa6fb3a38eb601bd8 Mon Sep 17 00:00:00 2001 From: andrzej Date: Sun, 30 Jun 2024 20:15:30 +0200 Subject: [PATCH] add open handler --- src/app/ui/inputs/textInput.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/ui/inputs/textInput.tsx b/src/app/ui/inputs/textInput.tsx index be6f9ea..f5e126b 100644 --- a/src/app/ui/inputs/textInput.tsx +++ b/src/app/ui/inputs/textInput.tsx @@ -26,6 +26,10 @@ export const TextInputCell = (props: CellContext) => { initialValue = value handleClose() } + function handleOpen() { + console.log(props.row.getEx) + setIsActive(true) + } function handleClose() { setValue(initialValue) setIsActive(false)