本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- wallimn
- benladeng5225
- ranbuijj
- javashop
- fantaxy025025
- jickcai
- robotmen
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- gdpglc
- tanling8334
- gaojingsong
- arpenker
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- wjianwei666
- lzyfn123
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
最新文章列表
sencha touch 基础 alert
<!DOCTYPE html><html><head> <meta charset="UTF-8"/> <title>index.html文件示例</title> <link rel="stylesheet" href="css/sencha-tou ...
sencha touch01
sencha touch ch01-------------------------------------------------------------index.html---------------------<!DOCTYPE html><html><head> <title>index.html文件示例< ...
sencha touch study log
有缘者得之
www.sencha.com
java.oracle.com
rubyinstaller.com
1 jdk JAVA_HOME
2 touch 2.3
3 install sencha sdk
4 sencha -sdk /pach/sencha/touch generate app appname apppath
5 install android sdk
6 sencha web ...
ExtJS使用Sencha Cmd合并javascript文件为一个文件
1. Motivation
To reduce page load time by reducing the requests of fetching JavaScript files.
2. Creating a production build manually
Download and Install Sencha Cmd and Extjs sdk
1) Download Sench ...
Sencha app build出来的all-classes.js里面的类顺序不对
问题描述:
使用Sencha cmd的Sencha app build成功的生成了all-classes.js文件,测试时发现浏览器报如下错误,
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8090/myContext/APPName/model/cla ...
Sencha Touch 复杂 store
Ext.define('Contact.model.Titles', { extend: 'Ext.data.Model', config: { fields: [ { name: 'itemTitle',type: 'string'}, { name: 'itemValue',type: 'string'}, ], belongsTo: 'Agency' } });
Ext.define ...
Sencha Touch TextArea 支持滑动
TextArea ios 支持滑动
Ext.define('Sai.view.TextArea', {
extend: 'Ext.form.TextArea',
xtype:'scrollTextArea',
initialize: function() {
this.callParent();
this.element.dom.a ...
Sencha Touch history
/**
* @author Ed Spencer
* @private
*
* Manages the stack of {@link Ext.app.Action} instances that have been decoded, pushes new urls into the browser's
* location object and listens for ...
Sencha Touch Carousel 自动切换
setInterval(function () {
crsl.next();//切换的方法
if (crsl.getActiveIndex() === crsl.getMaxItemIndex()) {
crsl.setActiveItem(0);
}
}, 20 ...
Sencha Touch Carousel 去除底栏
/*global Ext:false */
Ext.application({
launch: function () {
Ext.create('Ext.Carousel', {
defaults: {
styleHtmlContent: true
}, // defaults
...
Sencha Touch userAgent 判断
[{
name: 'engineName',
value: Ext.browser.engineName
}, {
name: 'engineVersion',
value: Ext.browser.engineVersion
...
Sencha Touch 2 Menu
主页面
/**
* @Author sai
*/
Ext.define("Sencha.view.Main", {
extend : 'Ext.tab.Panel',
xtype : 'Main',
//requires: ['Sencha.view.MenuButton','Sencha.view.MenuItemButton'], ...
Sencha Touch Ajax CORS 跨域
CORS
全称:Cross-Origin Resource Sharing
在ST的 文档中是这么写的
A relatively new capability of modern browsers is called CORS, which stands for Cross-Origin Resource Sharing. This allows you to send requests to ...