From 395ab545610d24d28d464c0499b1192c5c16c7ab Mon Sep 17 00:00:00 2001 From: WONKI LEE Date: Tue, 30 Apr 2024 15:17:20 +0900 Subject: [PATCH] =?UTF-8?q?=EC=83=9D=EC=82=B0=EA=B3=84=ED=9A=8D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20[=EC=9D=B4=EC=9B=90=EA=B8=B0]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home_dir/www/ksvc/prod/reg_plan/reg_plan.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/home_dir/www/ksvc/prod/reg_plan/reg_plan.js b/home_dir/www/ksvc/prod/reg_plan/reg_plan.js index 3c35e87..4090e62 100644 --- a/home_dir/www/ksvc/prod/reg_plan/reg_plan.js +++ b/home_dir/www/ksvc/prod/reg_plan/reg_plan.js @@ -322,7 +322,7 @@ class Tb_main_class { editor: "input", width: 50, editable: (cell) => { - return cell.getRow().getPosition() / 3 !== 1; + return cell.getRow().getPosition() % 3 !== 0; }, }, { @@ -332,7 +332,7 @@ class Tb_main_class { editor: "input", width: 50, editable: (cell) => { - return cell.getRow().getPosition() / 3 !== 1; + return cell.getRow().getPosition() % 3 !== 0; }, }, { @@ -342,8 +342,7 @@ class Tb_main_class { width: 50, editor: "input", editable: (cell) => { - console.log(cell); - return cell.getRow().getPosition() / 3 !== 1; + return cell.getRow().getPosition() % 3 !== 0; }, }, ],