ボタンがクリックされたときに更新されるかどうか、「Adet」、「toplam」であるこれらのフィールドの 1 つを確認したいのですが、どうすればよいかわかりません。ありがとう
//フィールドについて
{
header: dil('Adet'),
width: 30,
sortable: true,
dataIndex: 'adet',
editor: new Ext.form.NumberField({
enableKeyEvents : true,
allowBlank: false,
allowNegative: false,
style: 'text-align:left'
})
},{
header: dil('Toplam'),
width: 30,
sortable: true,
renderer: function(v, params, record){
return Ext.util.Format.usMoney(record.data.fiyat * record.data.adet);
},
dataIndex: 'toplam',
summaryType: 'totalCost',
summaryRenderer: Ext.util.Format.usMoney
}
// check area
handler: function(){
//commente alındı
// fileGrid_yp_is.el.mask(dil('Lütfen Bekleyiniz...'), 'x-mask-loading');
var il_id = Ext.getCmp('il_global25').getValue();
var sap_no = Ext.getCmp('ila-sapno-id25').getValue();
if(il_id == '' || sap_no == '' // this area code will be added) {
Ext.Msg.alert(dil("Dikkat"),dil("Lütfen zorunlu alanları doldurunuz"));
return false;
}}