Ext.define('Application.components.RequestTabPanel', {
extend: 'Ext.TabPanel',
initComponent: function() {
var component = this;
var RequestPanel = {
xtype: 'Application.components.RequestGrid',
parent: component,
title: 'Запросы на разъяснение',
optype: 'request',
closable: false
};
var ResponsePanel = {
xtype: 'Application.components.RequestGrid',
parent: component,
title: 'Ответы на запросы',
optype: 'response',
closable: false
};
var RejectPanel = {
xtype: 'Application.components.RequestGrid',
parent: component,
title: 'Отклоненные запросы',
optype: 'rejected',
closable: false
};
Ext.apply(RequestPanel, component.requestGridParams);
Ext.apply(ResponsePanel, component.requestGridParams);
Ext.apply(RejectPanel, component.requestGridParams);
Ext.apply(this, {
activeTab: 0,
enableTabScroll:false,
border: false,
items: [
RequestPanel,
ResponsePanel,
RejectPanel
]
});
Application.components.RequestTabPanel.superclass.initComponent.call(this);
}
});
вкладки сделаны по шаблону одному и тому же Application.components.RequestGrid, его надо приводить или нет? а то сильно длинный.
Вот как открыть ссылкой вкладку №2. У них у все url одинаковый.
Проект сделан на Zend Framwork 1.12.3 и ExtJs точно не знаю какой но больше 4 )