X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..6a7e4474cba9d8be4b2ec445e10f1691f7277c50:/examples/form/adv-vtypes.js diff --git a/examples/form/adv-vtypes.js b/examples/form/adv-vtypes.js index 74bdcc95..4f941dc8 100644 --- a/examples/form/adv-vtypes.js +++ b/examples/form/adv-vtypes.js @@ -1,112 +1,112 @@ /*! - * Ext JS Library 3.1.1 - * Copyright(c) 2006-2010 Ext JS, LLC + * Ext JS Library 3.2.0 + * Copyright(c) 2006-2010 Ext JS, Inc. * licensing@extjs.com * http://www.extjs.com/license */ -// Add the additional 'advanced' VTypes -Ext.apply(Ext.form.VTypes, { - daterange : function(val, field) { - var date = field.parseDate(val); - - if(!date){ - return; - } - if (field.startDateField && (!this.dateRangeMax || (date.getTime() != this.dateRangeMax.getTime()))) { - var start = Ext.getCmp(field.startDateField); - start.setMaxValue(date); - start.validate(); - this.dateRangeMax = date; - } - else if (field.endDateField && (!this.dateRangeMin || (date.getTime() != this.dateRangeMin.getTime()))) { - var end = Ext.getCmp(field.endDateField); - end.setMinValue(date); - end.validate(); - this.dateRangeMin = date; - } - /* - * Always return true since we're only using this vtype to set the - * min/max allowed values (these are tested for after the vtype test) - */ - return true; - }, - - password : function(val, field) { - if (field.initialPassField) { - var pwd = Ext.getCmp(field.initialPassField); - return (val == pwd.getValue()); - } - return true; - }, - - passwordText : 'Passwords do not match' -}); - - -Ext.onReady(function(){ - - Ext.QuickTips.init(); - - // turn on validation errors beside the field globally - Ext.form.Field.prototype.msgTarget = 'side'; - - var bd = Ext.getBody(); - - /* - * ================ Date Range ======================= - */ - - var dr = new Ext.FormPanel({ - labelWidth: 125, - frame: true, - title: 'Date Range', - bodyStyle:'padding:5px 5px 0', - width: 350, - defaults: {width: 175}, - defaultType: 'datefield', - items: [{ - fieldLabel: 'Start Date', - name: 'startdt', - id: 'startdt', - vtype: 'daterange', - endDateField: 'enddt' // id of the end date field - },{ - fieldLabel: 'End Date', - name: 'enddt', - id: 'enddt', - vtype: 'daterange', - startDateField: 'startdt' // id of the start date field - }] - }); - - dr.render('dr'); - - /* - * ================ Password Verification ======================= - */ - - var pwd = new Ext.FormPanel({ - labelWidth: 125, - frame: true, - title: 'Password Verification', - bodyStyle:'padding:5px 5px 0', - width: 350, - defaults: { - width: 175, - inputType: 'password' - }, - defaultType: 'textfield', - items: [{ - fieldLabel: 'Password', - name: 'pass', - id: 'pass' - },{ - fieldLabel: 'Confirm Password', - name: 'pass-cfrm', - vtype: 'password', - initialPassField: 'pass' // id of the initial password field - }] - }); - - pwd.render('pw'); +// Add the additional 'advanced' VTypes +Ext.apply(Ext.form.VTypes, { + daterange : function(val, field) { + var date = field.parseDate(val); + + if(!date){ + return false; + } + if (field.startDateField && (!this.dateRangeMax || (date.getTime() != this.dateRangeMax.getTime()))) { + var start = Ext.getCmp(field.startDateField); + start.setMaxValue(date); + start.validate(); + this.dateRangeMax = date; + } + else if (field.endDateField && (!this.dateRangeMin || (date.getTime() != this.dateRangeMin.getTime()))) { + var end = Ext.getCmp(field.endDateField); + end.setMinValue(date); + end.validate(); + this.dateRangeMin = date; + } + /* + * Always return true since we're only using this vtype to set the + * min/max allowed values (these are tested for after the vtype test) + */ + return true; + }, + + password : function(val, field) { + if (field.initialPassField) { + var pwd = Ext.getCmp(field.initialPassField); + return (val == pwd.getValue()); + } + return true; + }, + + passwordText : 'Passwords do not match' +}); + + +Ext.onReady(function(){ + + Ext.QuickTips.init(); + + // turn on validation errors beside the field globally + Ext.form.Field.prototype.msgTarget = 'side'; + + var bd = Ext.getBody(); + + /* + * ================ Date Range ======================= + */ + + var dr = new Ext.FormPanel({ + labelWidth: 125, + frame: true, + title: 'Date Range', + bodyStyle:'padding:5px 5px 0', + width: 350, + defaults: {width: 175}, + defaultType: 'datefield', + items: [{ + fieldLabel: 'Start Date', + name: 'startdt', + id: 'startdt', + vtype: 'daterange', + endDateField: 'enddt' // id of the end date field + },{ + fieldLabel: 'End Date', + name: 'enddt', + id: 'enddt', + vtype: 'daterange', + startDateField: 'startdt' // id of the start date field + }] + }); + + dr.render('dr'); + + /* + * ================ Password Verification ======================= + */ + + var pwd = new Ext.FormPanel({ + labelWidth: 125, + frame: true, + title: 'Password Verification', + bodyStyle:'padding:5px 5px 0', + width: 350, + defaults: { + width: 175, + inputType: 'password' + }, + defaultType: 'textfield', + items: [{ + fieldLabel: 'Password', + name: 'pass', + id: 'pass' + },{ + fieldLabel: 'Confirm Password', + name: 'pass-cfrm', + vtype: 'password', + initialPassField: 'pass' // id of the initial password field + }] + }); + + pwd.render('pw'); }); \ No newline at end of file