It really works fine, combo values are updated when it is loaded or selected.
But now I am trying to read what's in the JsonStore in a listener in the combo (change) and here comes trouble because it is trowing tons of code back:
Code:
,change: {
fn:function(combo, value) {
alert('Total records: '+combo.store.getCount()); // return a nice alert with 1 record in the store
alert(inspect(combo.store.getAt(0), 5, 1)); // should return a record but returns much more
}
}