We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
, {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 까지는 실행이 되는거 같았습니다. 하지만 에디터박스가 생성이 되질 않더라고요.
제가 뭘 놓치고 있는걸까요. 도움 부탁 드립니다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
, {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 까지는 실행이 되는거 같았습니다.
하지만 에디터박스가 생성이 되질 않더라고요.
제가 뭘 놓치고 있는걸까요. 도움 부탁 드립니다.
The text was updated successfully, but these errors were encountered: