If you use Architect, you can specify the array in the store property for ComboBox. It makes no sense to create additional stores and models if you just need a static βTitleβ ComboBox.
xtype:'combo', fieldLabel:'Title', name:'division', queryMode:'local', store:['Mr','Mrs','Ms'], displayField:'title', autoSelect:true, forceSelection:true
ps To change the property of the store to a local array in Architect, you need to select the small icon to the left of the store text and change it to an array instead of the store. 
Sorin source share