Hi,
I am using roweditor and inside the row i have a combo.
in the grid, the combo column is the symbol_id (number).
how do i make the combo/grid understand that symbol_id 22 is actually 'EURUSD'.
and force the grid display EURUSD and not 22.
Thanks.
this is my store:
'displayField' : 'symbol'
,'valueField' : 'symbol_id'
,SimpleStore({
fields: ['symbol_id', 'symbol']
,data: [[22,'EURUSD'],[23,'EURGBP'],[50,'USDILS']]
})