名前、値、新しい値の列を持つグリッドがあります。いくつかの値が存在する可能性があるため、新しい値列はコンボボックスです。管理者は、新しい値を承認/却下し、提案されたこれらの新しい値を修正できます。
私のグリッド列は次のようになります。
columns: [
{ text: 'Name', dataIndex: 'property_name', width: 300 },
{ text: 'Value', dataIndex: 'value', width: 350 },
{
text: 'New Value',
dataIndex: 'new_value',
width: 350,
editor: { allowBlank: true },
renderer: function(value, cell, record){
return record.get('new_value') == record.get('value') ? '' : record.get('new_value');
}
},
],
上記の機能を達成する方法はありますか?