var tabPanel = new Ext.TabPanel({
activeTab: 0,
defaults:
{
bodyStyle:{ padding:'190px' }
},
items:[{
title:'test',
tbar: [{
text: 'Добавить',
handler:function() { showFeedbackWin(); }
},
{
text: 'Удалить',
handler:function() { }
}],
items:
[
gridPersonalFactory
]
}, |