摘要: Ext.dom.QueryElement Selectors:(元素选择器)Ext.core.DomQuery.select('表达式') 返回HTMLElement[]*any elementExt.core.DomQuery.select('*') //返回所有dom元素Ean element with the tag EExt.core.DomQuery.select('div') //返回所有div元素E FAll descendent elements of E that have the tag FExt.core.DomQuery. 阅读全文
posted @ 2013-07-25 17:34 大新博客 阅读(768) 评论(0) 推荐(0) 编辑
摘要: [].concat([],[]); 合并俩个数组[].concat([]) 合并俩个数组[].join(",") 使用给定,连接该数组 a,b,c 阅读全文
posted @ 2013-07-22 17:21 大新博客 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Using a ProxyExt.define('User', { extend: 'Ext.data.Model', fields: ['id', 'name', 'email'], proxy: { type: 'rest', url : '/users' }});当在Model中定义了一个Proxy以后就可以使用 save,update,load,destroy这4个方法 进行增删改查操作var user = Ext.create('User', {name: 阅读全文
posted @ 2013-07-22 17:06 大新博客 阅读(1772) 评论(0) 推荐(0) 编辑
摘要: 第一步. 定义后:每个已定义函数,都有一个内在属性[scope],其对应一个对象的列表,列表中的对象仅能内部访问。例如:建立一个全局函数A,那么A的[Scope]内部属性中只包含一个全局对象(Global Object),而如果我们在A中创建一个新的函数B,那么B的[Scope]属性中就包含两个对象... 阅读全文
posted @ 2013-07-21 20:04 大新博客 阅读(338) 评论(0) 推荐(0) 编辑
摘要: Spring Validatehttp://haohaoxuexi.iteye.com/blog/1812584 阅读全文
posted @ 2013-07-18 16:23 大新博客 阅读(170) 评论(0) 推荐(0) 编辑
摘要: SpringMVC之类型转换Converter详解本文转载http://www.tuicool.com/articles/uUjaum1.1目录1.1目录1.2前言1.3Converter接口1.4ConversionService接口1.5ConverterFactory接口1.6GenericConverter接口1.6.1概述1.6.2ConditionalGenericConverter接口1.2前言在以往我们需要SpringMVC为我们自动进行类型转换的时候都是用的PropertyEditor。通过PropertyEditor的setAsText()方法我们可以实现字符串向特定类型的 阅读全文
posted @ 2013-07-18 16:03 大新博客 阅读(4889) 评论(0) 推荐(0) 编辑
摘要: @RequestMapping 用法详解之地址映射http://blog.csdn.net/walkerjong/article/details/7994326 阅读全文
posted @ 2013-07-14 18:37 大新博客 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 通过分析源代码解决动态加载Controller的问题最近在研究ExtJs(4.2.0)的MVC开发模式,具体Extjs的MVC如何使用这里不解释,具体参见ExtJs的官方文档。这里要解决的问题是如何解决在使用MVC模式时动态加载Controller。这是正常的写法,在Application里配置ControllerApplicationExt.application({ ... controllers: [ 'Users' ], ...});ControllerExt.define('AM.controller.Users', { extend: '.. 阅读全文
posted @ 2013-07-08 13:34 大新博客 阅读(1802) 评论(2) 推荐(1) 编辑
摘要: /** * 系统通用下拉选择Gird */Ext.define("Common.picker.GridPicker", { extend: "Ext.form.field.Picker", alias: 'widget.gridPicker', displayField: null, valueField: null, matchFieldWidth: false, store: null, columns: null, pickerWidth: 400, pickerHeight: ... 阅读全文
posted @ 2013-07-08 10:48 大新博客 阅读(2201) 评论(0) 推荐(0) 编辑
摘要: 在Condition中,用await()替换wait(),用signal()替换notify(),用signalAll()替换notifyAll(),传统线程的通信方式,Condition都可以实现,这里注意,Condition是被绑定到Lock上的,要创建一个Lock的Condition必须用newCondition()方法。这样看来,Condition和传统的线程通信没什么区别,Condition的强大之处在于它可以为多个线程间建立不同的Condition,下面引入API中的一段代码,加以说明。class BoundedBuffer { final Lock lock = new R... 阅读全文
posted @ 2013-07-07 14:59 大新博客 阅读(345) 评论(0) 推荐(0) 编辑