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