Определяем класс в ExtJS 4 (файл вида)
Ext.define('MyApp.view.Groups', {
extend: 'Ext.panel.Panel',
alias : 'widget.groups',
layout: 'fit',
initComponent: function() {
this.items = [
{
xtype: 'panel',
title: 'Товары',
}
];
this.callParent(arguments);
}
});
Создаем объект:
// подключаем файл вида в контролере
views: ['Groups'],
// создаем объект
var object = Ext.create('MyApp.view.Groups', {title: 'Название'});