Skip to content

Instantly share code, notes, and snippets.

@julianshen
Created October 20, 2011 18:05
Show Gist options
  • Save julianshen/1301828 to your computer and use it in GitHub Desktop.
Save julianshen/1301828 to your computer and use it in GitHub Desktop.
Ext.application({
name: 'tabtest1',
launch: function() {
Ext.create("Ext.TabPanel", {
fullscreen: true,
tabBar: {
docked: 'bottom',
layout: {
pack: 'center'
}
},
defaults: {
styleHtmlContent: true,
scrollable: true
},
items: [
{
title: 'Home',
iconCls: 'home',
html: "<h1>I'm Tab1</h1>"+
'<img src="http://images.apple.com/home/images/hero.jpg" />'
},
{
title: 'Contact',
iconCls: 'user',
html: "<h1>I'm Tab2</h1>"
}
]
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment