ExtJS 4 associations and store.save()
问题 I am using ExtJS 4, and have a model with an association hasMany defined. ModelA -> hasMany -> ModelB I use GridA to show the data from ModelA. On clicking a record in GridA, I use a rowSelect event to create GridB which use ModelA.ModelB() as a store. It all goes well until I change a record in ModelB. The record does get updated in the hierarchy, but when I execute StoreA.save(), no change is sent back to the server. It does not notice the changes in associations. How do I save this data,