commit(2)
-
Sencha grid 특정 컬럼만 commit해야 하는 경우
selection.commit(false, ['age']);처럼 원하는 컬러만 commit 처리함Ext.create('Ext.grid.Panel', { title: 'Editable Grid Example', renderTo: Ext.getBody(), width: 600, height: 400, store: { fields: ['id', 'name', 'age'], data: [ { id: 1, name: 'John Doe', age: 30 }, { id: 2, name: 'Jane Doe', age: 25 } ] }, columns: [ { text: 'ID', dataInd..
2024.12.28 -
TortosiseSVN update/commit
SVN update : SVN 저장소에서 로컬PC로 파일들을 가져오는 명령 SVN commit : 로컬PC의 파일들을 SVN 저장소로 보내는 명령
2021.04.18