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