You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 2, 2026. It is now read-only.
<요구사항>
grid.on('editingFinish', (ev) => { // 그리드 에디팅 종료
if(ev값이 붙여넣기 된 값) {
Custom Function 실행
}
});
그리드 editingFinish 이벤트에서
ev값이 타이핑으로 입력받은 값인지 복사 붙여넣기로 입력된값인지 감지하여
분기 처리를 하고 싶습니다.
<문제점>
그런데 afterChange나, beforeChnage 처럼 ev.origin으로 type을 감지할 수 없어 어려움을 겪고 있습니다.
<결론>
editingFinish 이벤트에서 행 복사 or 직접입력 이벤트를 감지하는 방법을 알고 싶습니다.