1
0
Fork 0

생산계획 수정 [이원기]

This commit is contained in:
WONKI LEE 2024-04-30 15:17:20 +09:00
parent 802d31189e
commit 395ab54561
1 changed files with 3 additions and 4 deletions

View File

@ -322,7 +322,7 @@ class Tb_main_class {
editor: "input", editor: "input",
width: 50, width: 50,
editable: (cell) => { editable: (cell) => {
return cell.getRow().getPosition() / 3 !== 1; return cell.getRow().getPosition() % 3 !== 0;
}, },
}, },
{ {
@ -332,7 +332,7 @@ class Tb_main_class {
editor: "input", editor: "input",
width: 50, width: 50,
editable: (cell) => { editable: (cell) => {
return cell.getRow().getPosition() / 3 !== 1; return cell.getRow().getPosition() % 3 !== 0;
}, },
}, },
{ {
@ -342,8 +342,7 @@ class Tb_main_class {
width: 50, width: 50,
editor: "input", editor: "input",
editable: (cell) => { editable: (cell) => {
console.log(cell); return cell.getRow().getPosition() % 3 !== 0;
return cell.getRow().getPosition() / 3 !== 1;
}, },
}, },
], ],