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

안녕하세요 editor에 maxLength를 지정할수 없나요? #56

Open naver0704 opened 7 years ago

naver0704 commented 7 years ago

axisJ에서는 editor에 maxLength 속성을 사용했었는데

ax5ui Grid에서는 안먹히는것 같아 문의드립니다.

thomasJang commented 7 years ago

https://github.com/ax5ui/ax5ui-grid/blob/master/src/modules/ax5grid-inline-editor.js#L10 여기서 정의되고 있는데요. 오늘 저녁에 패치 해보겠습니다. 급하시면 수정 후 풀 리퀘스트 하셔도 좋습니다.

thomasJang commented 7 years ago

패치된 버전을 이용하면

editor: {
    type: "text",
    disabled: function () {
        // item, value
        return false;
    },
    attributes: {
        'maxlength': 5,
        'data-maxlength': 10
    }
}

할 수 있습니다.