Código Javascript:
Ver original
this.codigoP = new Ext.form.NumberField({ fieldLabel:'Codigo Postal', id: 'codigop', emptyText: 'escriba', value: '67190', submitValue:false, allowDecimals:false }); this.botonC = new Ext.Button({ text: 'Consultar', }); this.botonC.on('click',function(){ this.coloniaCmb.enable(); this.countryCmb.clearValue(); this.stateCmb.clearValue(); this.cityCmb.clearValue(); this.coloniaCmb.clearValue(); this.coloniaStore.load({ params:{ d:Ext.getCmp('codigop').value } }); this.coloniaCmb.setValue(); this.stateStore.load({ params:{ //id:52 } }); },this); this.coloniaCmb = new Ext.form.ComboBox({ width:200, store: this.coloniaStore, disabled: true, id: 'colonia', valueField: 'value', loadingText: '', displayField: 'label', triggerAction: 'all', mode: 'local', emptyText: 'Primero Seleccione una ciudad', fieldLabel: 'Colonia' });
y ahora lo que necesito hacer es que al cargar los datos en ese combo se quede seleccionada la primera opcion
por mas que he buscado soluciones e intentado de varias maneras no doy con la solucion acertada. Alguien podría ayudarme por favor?