forked from HANYANG/HANYANG_MES
생산계획 수정 [이원기]
This commit is contained in:
parent
802d31189e
commit
395ab54561
|
|
@ -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;
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue