guide Edit Page
기존 데이터행을 수정하거나 신규 행을 추가하는 페이지 뷰.
RtRowEditPage가 설정 모델이며, RtListOptions.editPage 속성으로 접근한다.
기본 리스트 뷰 위에 표시된다.
사용자는 설정에 따라 데이터행을 클릭하거나, command를 클릭해서 이 페이지를 연다.
데이터행 클릭 설정
데이터행 설정으로 클릭시 행 수정 페이지를 표시할 수 있다.
list.setConfig({
options: {
row: {
clickAction: 'edit' // 행 수정
},
...
}
});
list.options.row.clickAction = RealTouch.RtRowClickAction.EDIT;
Row Command 설정
list.setConfig({
options: {
row: {
template: 'row',
commands: ['@info', '@edit', '@delete'],
},
...
}
});
'@'로 시작하는 command는 라이브러리가 기본으로 제공하는 것으로 '@edit'가 행 편집 command이다.
편집
See Also
Info Page
RtListControl.rowClickAction
데이터행 개요
RtListRow
Edit Bar 개요