Extjs初学者(二)
表单vtype验证
1 <script> 2 Ext.onReady(function(){ 3 Ext.QuickTips.init(); 4 Ext.create('Ext.form.Panel',{ 5 title:'示例', 6 frame:true, 7 width:300, 8 renderTo:Ext.getBody(), 9 defaultType:'textfield', 10 items:[ 11 { 12 fieldLabel:'邮件', 13 vtype:'email' 14 },{ 15 fieldLabel:'网址', 16 vtype:'url' 17 },{ 18 fieldLabel:'字母', 19 vtype:'alpha' 20 },{ 21 fieldLabel:'字母和数字', 22 vtype:'alphanum' 23 } 24 ] 25 }); 26 }); 27 </script>