10
Tôi có lưới nên thực thi trình kết xuất trên cột, nhưng không hiển thị bất kỳ thứ gì và không ghi lại lại bản ghi.ExtJS 4 cột “trình kết xuất” trên lưới
Xem
Ext.define('Ab.view.maquina.MaquinaList', {
extend: 'Ext.grid.Panel',
alias: 'widget.maquinalist',
store: 'Maquinas',
tbar: [
{ text: _('Agregar'), action:'add'},
{ text: _('Editar'), action: 'upd'},
{ text: _('Eliminar'), action: 'del'}
],
columns: [
{ text: _('Nombre'), flex: 1, dataIndex: 'nombre' },
{ text: _('Estado'), flex: 1, dataIndex: 'estado'},
{ text: _('Marca'), flex: 1, dataIndex: 'codigo', renderer: function(value, record){this.renderMarca(value, record)}}
],
renderMarca: function(value,record){
console.log(value); < show value
console.log(record.get('nombre')); < error
return value; < don't show value on the column
}
});
Cảm ơn
Rất tốt!. Vấn đề là RETURN và thứ tự của params. Cảm ơn rất nhiều. – richardhell