본문 바로가기
Programing/Javascript

kenco grid checkbox change 이벤트 처리

by Benedictus711 2024. 11. 11.
728x90

kenco 체크박스 change 이벤트 처리

그리드에서 kenco checkbox 이벤트 처리를 찾아보다 해당 방법이 있어 메모처리.

<input id="checkbox" />

<script>
    $("#checkbox").kendoCheckBox({
        change: function (e) {
            /* The result can be observed in the DevTools(F12) console of the browser. */
            console.log(e.checked);
        }
    });
</script>
728x90

댓글