일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 가우스
- MySQL
- Android
- ibsheet
- jQuery
- oracle
- Ajax
- rowspan
- dock
- node.js
- appspresso
- Spring
- JDOM
- JSON
- GPS
- Eclipse
- 선택적조인
- PLSQL
- sencha touch
- jsr 296
- tomcat
- iBATIS
- Struts
- MFC
- Google Map
- PHP
- WebLogic
- phonegap
- 전자정부프레임워크
- swingx
Archives
- Today
- Total
Where The Streets Have No Name
sencha touch에서 외부html 로딩 본문
Ext.setup({
tabletStartupScreen: 'tablet_startup.png',
phoneStartupScreen: 'phone_startup.png',
icon: 'icon.png',
glossOnIcon: false,
onReady: function() {
var panel = new Ext.TabPanel({
tabBar: {
dock: 'bottom',
ui: 'light',
layout: {
pack: 'center'
}
},
fullscreen: true,
cardSwitchAnimation: 'slide',//'fade', 'slide', 'flip', 'cube', 'pop', 'wipe'
items: [aboutPanel]
});
Ext.Ajax.request({
url: 'about.html',
success: function(response) {
aboutPanel.update(response.responseText);
}
});
}
});