페이지 탐색 모음
2932 단어 페이지 탐색 모음
Ext.onReady(function() {
var i = 0;
var tabCenter = new Ext.TabPanel( {
region : 'center',
margins : '0 0 0 0',
id : 'tab_view',
activeTab : 0,
//tabWidth : 135,
resizeTabs: true,
minTabWidth: 120,
enableTabScroll : true,
defaults : {
xtype : 'panel',
closable : true
},
items : [ {
iconCls : 'smt-welcome',
title : ' ',
id : 'btnAlert',
closable : false,
html : ' '
} ],
bbar : [ {
text : ' ',
handler : function() {
var id = 'tab' + i;
tabCenter.add( {
title : ' ' + i++,
id : id,
//html: '<iframe name="centerF" frameborder="0" width="100%" height="100%" src="grid.jsp"/>'
html: '<iframe name="centerF" frameborder="0" width="100%" height="100%" src="http://www.baidu.com"/>'
//autoLoad:'grid.jsp'
});
tabCenter.setActiveTab(id);
}
} ]
});
var naveAccordion = new Ext.Panel( {
title : ' ',
layout : 'accordion',
region : 'west',
iconCls : 'menu_panel',
width : 180,
height : 400,
collapsible : true,
margins : '0 0 0 0',
animCollapse : false,
animFloat : false,
split : true,
items : [ {
title : 'Panel 1',
iconCls : 'smt-administrator',
html : '<p>Panel content!</p>'
}, {
title : 'Panel 2',
iconCls : 'smt-administrator',
html : '<p>Panel content!</p>'
}, {
title : 'Panel 3',
iconCls : 'smt-administrator',
html : '<p>Panel content!</p>'
} ]
});
var viewport = new Ext.Viewport( {
layout : 'border',
title : 'Border Layout',
layout : 'border',
items : [ {
region : 'north',
margins : '0 0 0 0',
border : false,
height : 25,
bbar : [ {
iconCls : 'smt-administrator',
text : 'admin'
}, '-', {
iconCls : 'smt-systemTime',
id : 'theCurrentTime'
}, '->', {
text : ' ',
iconCls : 'smt-exit',
handler : function() {
window.location.href = '<%=path%>/admin/to_login';
}
} ]
}, naveAccordion, tabCenter ]
});
});