특정 컬럼에서 조회 시엔 편집 불가하고 행추가 시에만 편집이 가능하도록 하기 위해서는 Attribute+Formula를 통해서 구현해야 합니다.


  "Def": {
    "Row": {
      CanFormula: 1,
      CalcOrder: "data1CanEdit"
    }
  },
  "Cfg": {
    "SearchMode": 0
  },
  //중앙(메인) 컬럼 설정
  "Cols": [{
                Header: "데이터1",
                Name: "data1", 
                Type: "Text",
                Align: "center",
                Width: 100,
                CanEditFormula:"Row.Added==1?1:0"
            },
...


예제) https://jsfiddle.net/nxLofu7y/