1. [Tab Panel ]
Sample Code
Ext.onReady(function() {
Ext.create('Ext.tab.Panel', {
width : 500,
height : 500,
renderTo : Ext.getBody(),
items : [{
title : 'Tab1',
html : 'Tab Tab',
}, {
title : 'Tab2',
html : 'Tab Tab Tab Tab'
}]
})
})
JavaScript
복사