введите описание изображения здесь Похоже, вы забыли зарегистрировать свой магазин в приложении. js Что-то вроде:
Ext.define('MyApp.Application', {
extend: 'Ext.app.Application',
name: 'MyApp',
stores: [
// Here register your global stores
]
...
...
Или, если это не глобальный магазин, просто создайте его по имени класса:
...
...
}, {
region: 'center',
xtype: 'tabpanel',
items: [{
title: 'Center Tab 1',
items: [{
xtype: 'grid',
flex: 1,
columnLines: true,
title: 'Users',
store: Ext.create('MyApp.store.User'), // HERE
bind: '{users}',
columns: [{
text: 'ID',
dataIndex: 'id'
}, {
Фиксированный макет, имя магазина и т. Д. c.
Ext.define('MyApp.model.User', {
extend: 'Ext.data.Model',
fields: ['id', 'email', 'first_name', 'last_name', 'avatar']
});
Ext.define('MyApp.store.Users', {
storeId: 'Users',
extend: 'Ext.data.Store',
model: 'MyApp.model.User',
autoLoad: true,
proxy: {
type: 'ajax',
url: 'https://reqres.in/api/users',
reader: {
type: 'json',
rootProperty: 'data'
}
},
listeners: {
datachanged: function () {
console.log(this);
}
}
});
Ext.define('MyApp.view.Main', {
extend: 'Ext.container.Container',
requires: [
'Ext.tab.Panel',
'Ext.layout.container.Border'
],
xtype: 'app-main',
layout: {
type: 'border'
},
items: [{
region: 'west',
xtype: 'panel',
title: 'west',
width: 150
}, {
region: 'center',
xtype: 'tabpanel',
items: [{
title: 'Center Tab 1',
padding: 5,
layout: 'fit',
items: [{
xtype: 'grid',
flex: 1,
columnLines: true,
title: 'Users',
store: Ext.create('MyApp.store.Users'),
bind: '{users}',
columns: [{
text: 'ID',
dataIndex: 'id'
}, {
text: 'Email',
dataIndex: 'email',
flex: 1
}, {
text: 'First name',
dataIndex: 'first_name'
}, {
text: 'Last name',
dataIndex: 'last_name'
}, {
text: 'Avatar',
dataIndex: 'avatar'
}]
}]
}, {
title: 'Center Tab 2',
items: [{
xtype: 'component',
html: 'Hello 2'
}]
}]
}]
});