ext笔记2

Ext.apply(Ext.form.VTypes,{
"age":function(_v){
if(/^d+$/.test(_v)){
var _age =parseInt(_v);
if(_age<200)
return true;
}
return false;
}
},
"ageText":"输入项必须是年龄格式",
"ageMask":/[0-9]/i

)
Ext.form.Field.prototype.msgTarget="side";//显示感叹号
PersonInfoFormPanel = Ext.extend(Ext.form.FormPanel,{

constructor:function(){
PersonInfoFormPanel.superclass.constructor.call(this,{
labelWidth:45,
defaultType:"textfield",
items:[{
fieldLabel:"姓名"
},{
fieldLabel::"年龄",
vtype:"age"
}]
})
}
})


this.addEvents("submit");//公布事件
this.fireEvent("sumbit",this,this.form.getValues());//抛出事件--让其他地方可以获得这里抛出的东西



你可能感兴趣的:(ext,prototype)