
extjs
文章平均质量分 68
lyon-yao
程序袁
展开
-
Ext中一次给一个组件注册多个事件
function a(){ var lab=Ext.get("testL"); lab.on({'click':{fn:fn,scope:this,delay:100}, 'mouseover':{fn : fn1,scope:this}, 'mouseout':{fn : fn2,scope:this}}); } Ext.onReady(function(){ ...原创 2010-12-02 16:31:40 · 136 阅读 · 0 评论 -
Ext GradPanle配置说明
[img]http://www.xhsjs.com/File/day_110118/201101181811173641.jpg[/img] 1、Ext.grid.GridPanel 主要配置项: store:表格的数据集 columns:表格列模式的配置数组,可自动创建ColumnModel列模式 autoExpan...原创 2011-03-25 09:50:40 · 135 阅读 · 0 评论 -
ext field验证
Ext.onReady(function(){ var form = new Ext.form.FormPanel({ labelAlign: 'right', labelWidth: 250 }); form.add(new Ext.form.TextField({ fieldLabel: '不能为空', allowBlank: false ...原创 2011-11-08 11:59:07 · 263 阅读 · 0 评论