Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 스냅잘찍음
- Store
- ORM
- EFCore
- ViewModel
- dbContext
- 코드프로그래머스
- React
- 상속
- c#코딩의기술실전편
- lazy loading
- mac
- .net
- JavaScript
- 대전본식영상
- intellij
- JSON
- LINQ
- Request
- 명시적외래키
- vscode
- error
- scanner
- minimalAPI
- 에스가든스냅
- 라도무스dvd
- c#
- extraParams
- Config
- extjs
Archives
- Today
- Total
ejyoo's 개발 노트
extJS에서 checkcolumn의 dataIndex 값 가져오기 본문
✍ dataIndex는 해당하는 컴포넌트의 결과값을 가져올 때 사용할 수 있다.
✍ 예제 ✍
columns에 다음과 같은 아이템이 있다.
{
xtype: 'checkcolumn',
dataIndex: 'testCaseCheckBox',
width: 25,
sortable: false,
header: '',
headerCheckbox: true
},
checkbox가 여러개 있을 때,
체크된 체크박스를 가져오고
그 카운트를 세어
체크된 체크박스가 없을 때,
메시지 박스를 띄운 후 OK 버튼을 클릭했을 때
리턴한다.(창을 닫는다.)
var checkedCount = 0;
var records = this.getView().getStore().getRange();
records.forEach (function (record) {
if (record.get('testCheckBox')) {
checkedCount++;
}
});
if (checkedCount < 1) {
Ext.Msg.show({
width: 250,
title: 'Alert',
msg: 'Check testCheckBox target(s).',
buttonText: {
cancel: 'OK'
}
});
return;
}
'FrontEnd > Ext' 카테고리의 다른 글
[ExtJS] view에서 viewModel에 있는 data를 binding 이 안됨. => 원인 : bind 할 때 그 속성의 setter 가 있어야 하는데 없는 속성을 bind 시키려고 했음 (0) | 2022.06.13 |
---|---|
[ExtJS] 특정 뷰 내 있는 모든 자식 요소를 불러오는 방법 (0) | 2022.06.13 |
참고 사이트 목록 (0) | 2021.11.30 |
싱글톤 (0) | 2021.10.06 |
정적속성 (0) | 2021.10.06 |