Extjs4 combobox displayValue in grid
问题 Please, help. I want to show my displayValue in the Grid. I found the solution here, but I can't understand how use it. My code: columns:[...,{ header: 'Product', id: 'combo', locked: true, dataIndex: 'prod_id', editor: { xtype: 'combobox', store: new Ext.data.Store({ fields: ['value','display'], data: prod_list }), displayField: 'display', valueField: 'value' } },...] Solution Ext.util.Format.comboRenderer = function(combo){ return function(value){ var record = combo.findRecord(combo