задача решилась.. id статуса в сторах была типа string а не int
вот к примеру:
Ext.create('Ext.form.field.ComboBox',
{
store: store_combo,
hideLabel: true,
queryMode: 'local',
displayField: 'name',
valueField: 'id',
listeners:
{
focus:
{
fn: function()
{
console.log(typeof this.getValue());
}
}
}
}
при фокусе в консоль выдаст String, нужен int