Sencha grid 신규 컬럼 여부 체크
2024. 12. 18. 21:58ㆍJavascript/Sencha
신규 row는 record.phantom=true
{
text: 'Age',
dataIndex: 'age',
flex: 1,
renderer: function (value, metaData, record) {
if (!record.phantom) {
metaData.tdCls = 'non-editable';
}
return value;
},
editor: {
xtype: 'numberfield',
allowBlank: false,
minValue: 0
},
getEditor: function (record, defaultEditor) {
// Allow editing only for new rows
return record.phantom ? defaultEditor : null;
}
}
'Javascript > Sencha' 카테고리의 다른 글
Sencha grid 데이터 합치 (0) | 2024.12.18 |
---|---|
Sencha grid 데이터 가져오기 (0) | 2024.12.18 |
Sencha Grid cell 편집 동적 처리 (1) | 2024.12.18 |
Sencha Uncaught TypeError: c is not a constructor (0) | 2024.12.16 |
Sencha panel안의 items layout 정렬 (0) | 2024.12.15 |