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

그리드 인라인에디트에서 값 변경시 특정 Cell 배경색 혹은 글자색 바꾸는 방법 #131

Open HyunWooJeon opened 6 years ago

HyunWooJeon commented 6 years ago

안녕하세요. AXISJ로 프로그램 개발한지 2주 좀 넘었습니다.

아무리 찾아봐도 안되네요 ㅠㅠ;

beforeUpdate 이벤트는 찾았으나 해당 Row에 특정 Cell 배경색이나 글자색 바꾸는게 안되네요.

아시는분 답변 부탁드리겠습니다 ㅠ

thomasJang commented 6 years ago

https://github.com/ax5ui/ax5ui-grid/issues/80

이 이슈를 확인해보시면 되겠구요.

thomasJang commented 6 years ago

그리고 컬럼의 색은

columns: [
    {
        key: "a",
        label: "필드A",
        width: 80,
        styleClass: function () {
            // 이 함수 안에서 this에 다음의 값이 담겨 있습니다.
            // this.column
            // this.key
            // this.item
            // this.index
            // return으로 반환하는 문자열이 td에 class로 추가됩니다.
            return "ABC";
        }
    },

을 활용하세요.