일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MFC
- swingx
- Spring
- iBATIS
- ibsheet
- tomcat
- PLSQL
- WebLogic
- Ajax
- GPS
- Android
- JSON
- dock
- 전자정부프레임워크
- rowspan
- sencha touch
- jsr 296
- Google Map
- phonegap
- 선택적조인
- Eclipse
- node.js
- appspresso
- 가우스
- JDOM
- jQuery
- Struts
- oracle
- PHP
- MySQL
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);
}
});
}
});