I return a list of string for the combobox that serialized look like:
data:{"option1", "option2", "option3"...}
JsonReader have a list of fields, lets said we want to map to a OPT field:
reader: new Ext.data.JsonReader({...
fields: [ {name: 'OPT', mapping: '???'} ]
})
I understand that mapping should be point to the property name... but string doesn't have value/content property.