Open v0228ds opened 3 years ago
, {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문 안쪽에 아래와 같이 작성 하고
if(col.editorUse !== undefined){ if(col.editorUse){ col.editor = {type: ‘text’}; } }
getFieldValue.call(this, _list, _list[di], di, col) << 이 function 까지는 실행이 되는거 같았습니다. 하지만 에디터박스가 생성이 되질 않더라고요.
제가 뭘 놓치고 있는걸까요. 도움 부탁 드립니다.
, {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문 안쪽에 아래와 같이 작성 하고
if(col.editorUse !== undefined){ if(col.editorUse){ col.editor = {type: ‘text’}; } }
getFieldValue.call(this, _list, _list[di], di, col) << 이 function 까지는 실행이 되는거 같았습니다. 하지만 에디터박스가 생성이 되질 않더라고요.
제가 뭘 놓치고 있는걸까요. 도움 부탁 드립니다.