Hi, my goal is to fill my form field from a store loading in an MVC application, here is my code from
my controller:
the store loading is ok, app.model.Item is defined and gives no error, but the form still remain empty.PHP Code:var myStore = Ext.getStore('myStore');
myStore.getProxy().setExtraParams({id_item: '11'});
myStore.load({
callback: function(records, operation, success) {
if (success == true) {
var myModel = Ext.create('app.model.Item', {});
myModel.setData(records); // this is the problem
var selmodview = this.getSelmodview();
Ext.Viewport.animateActiveItem(selmodview, {type: 'slide', direction: 'left'});
var mainform = this.getMainform(); // this is the form to fill with records
mainform.setRecord(myModel);
} else {
console.log(operation.error.statusText);
}
},
scope: this
});
