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; }, }, ],