반응형
SlickGrid의 Cell을 수정 중에 저장 버튼을 클릭하면 Grid Data에 반영 안됩니다.
Cell을 수정하고 SlickGrid의 다른 Cell을 클릭하거나, 엔터키를 입력하면 Grid Data에 반영되지만, 매우 번거롭습니다.
저장 버튼을 클릭 할 때 Grid Data를 반영하는 코드는 아래와 같으며, 취소도 할 수 있습니다.
Cell 수정 중인 값 Grid Data반영하기
var grid = new Slick.Grid("#gridContainer", dataView, gridColumns, options);
...
grid.getEditController().commitCurrentEdit();
Cell 수정 중인 값 취소하기
var grid = new Slick.Grid("#gridContainer", dataView, gridColumns, options);
...
grid.getEditController().cancelCurrentEdit();
반응형
'Javascript' 카테고리의 다른 글
SlickGrid 마우스 휠 제대로 작동하지 않을 경우 처리 방법 (0) | 2022.06.13 |
---|---|
SlickGrid 세로 셀 병합(?)하기 (0) | 2022.05.20 |
SlickGrid Cell 달력 표시 한글 처리하기 (0) | 2022.05.12 |
SlickGrid - Cell 수정 중 저장 버튼 클릭 시 수정 된 데이터 Grid Data에 반영 시키기 (0) | 2021.11.10 |
Javascript JSONObject 배열 정렬하기 (0) | 2021.10.18 |
댓글