ax5ui / ax5ui-grid

Javascript UI Component - GRID ( Excel Grid, jqGrid, angularjs grid, jquery grid, SlickGrid, ag-grid gridify)
http://ax5.io/ax5ui-grid/demo/index.html
MIT License
99 stars 36 forks source link

그리드 사용자 지정 옵션 질문입니다. #162

Open v0228ds opened 3 years ago

v0228ds commented 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 까지는 실행이 되는거 같았습니다. 하지만 에디터박스가 생성이 되질 않더라고요.

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