グリッドにステータスバーがあります。ここで、ステータスバーにアイコンを追加し、そのアイコンの横にテキストを追加する必要があります。しかし、アイコンではなくステータスバーにテキストを設定できます。誰でもこれについて私を助けてもらえますか?! 以下は私のコードです:
weekSelectionChange: function(model, records){
var record = records[0];
if(record){
var activeFlag = record.data.activeFlag,
statuslabel = Ext.getCmp('showgridstatusbar'),
cashPayLabel = Ext.getCmp('cashPayLabel'),
lateFeeLabel = Ext.getCmp('lateFeeLabel'),
icon = '${resource(dir: "images", file: "TIC01001.png")}',
status = activeFlag ? '<span style="color:black;font-weight:bold">Installment Status » </span> <span style="color:green;font-weight:bold">Paid</span>' : '<span style="color:black;font-weight:bold">Installment Status » </span> <span style="color:red;font-weight:bold">Due !</span>';
statuslabel.setIcon(icon);
}
}