?? dutch-form.js.svn-base
字號:
/*
* Ext JS Library 2.2
* Copyright(c) 2006-2008, Ext JS, LLC.
* licensing@extjs.com
*
* http://extjs.com/license
*/
Ext.onReady(function(){ Ext.QuickTips.init(); // turn on validation errors beside the field globally Ext.form.Field.prototype.msgTarget = 'side'; var bd = Ext.getBody(); bd.createChild({tag: 'h2', html: 'Dutch Form'}) // simple form var simple = new Ext.FormPanel({ labelWidth: 100, // label settings here cascade unless overridden url:'save-form.php', frame:true, title: 'Contact Informatie (Dutch)', bodyStyle:'padding:5px 5px 0', width: 350, defaults: {width: 220}, defaultType: 'textfield', items: [{ fieldLabel: 'Voornaam', name: 'voornaam', allowBlank:false },{ fieldLabel: 'Achternaam', name: 'achternaam' },{ fieldLabel: 'Tussenvoegsel', width: 50, name: 'tussenvoegsel' },{ fieldLabel: 'Bedrijf', name: 'bedrijf' }, new Ext.form.ComboBox({ fieldLabel: 'Provincie', hiddenName: 'state', store: new Ext.data.SimpleStore({ fields: ['provincie'], data : Ext.exampledata.dutch_provinces // from dutch-provinces.js }), displayField: 'provincie', typeAhead: true, mode: 'local', triggerAction: 'all', emptyText:'Kies een provincie...', selectOnFocus:true, width:190 }), { fieldLabel: 'E-mail', name: 'email', vtype:'email' }, new Ext.form.DateField({ fieldLabel: 'Geb. Datum', name: 'geb_datum' }) ], buttons: [{ text: 'Opslaan' },{ text: 'Annuleren' }] }); simple.render(document.body);});
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -