ax5 grid 옵션 질문 입니다. editor 생성 관련.

컬럼 옵션 입니다.

        , {key: "h", label: "field H", editorUse: true
            /*, editor:{
                type: 'text'
            }*/

ax5grid.js > repaintBody function > for (ci = 0, cl = rowTable.rows[tri].cols.length; ci < cl; ci++) {

위의 for문 안쪽에
아래와 같이 작성해보니

var editorUseChk = false;
if(col.editorUse !== undefined){
editorUseChk = true;
col.editor = {type: ‘text’};
}

getFieldValue.call(this, _list, _list[di], di, col) << 이 function 까지는 실행이 되는거 같았습니다.
하지만 에디터박스가 생성이 되질 않더라고요.

제가 뭘 놓치고 있는걸까요. 도움 부탁 드립니다.