I am trying to simply select an item in the dropdown list after it has been loaded into a store. This does not work:
Ext.getCmp('ddlModel').setValue(aircraftStore.getAt(0).data.ModelTypeCode);
This throws an exception:
Ext.getCmp('ddlModel').selectByValue(aircraftStore.getAt(0).data.ModelTypeCode);
Here is the exception: 'this.view' is null or not an object
Anyone know how to do this in ExtJs?