git.ithinksw.org
/
extjs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Upgrade to ExtJS 3.3.1 - Released 11/30/2010
[extjs.git]
/
docs
/
source
/
TextField.html
diff --git
a/docs/source/TextField.html
b/docs/source/TextField.html
index
db3d49e
..
8806ffb
100644
(file)
--- a/
docs/source/TextField.html
+++ b/
docs/source/TextField.html
@@
-7,10
+7,10
@@
</head>
<body onload="prettyPrint();">
<pre class="prettyprint lang-js">/*!
</head>
<body onload="prettyPrint();">
<pre class="prettyprint lang-js">/*!
- * Ext JS Library 3.
2.0
- * Copyright(c) 2006-2010
Ext JS,
Inc.
- * licensing@
extjs
.com
- * http://www.
extjs
.com/license
+ * Ext JS Library 3.
3.1
+ * Copyright(c) 2006-2010
Sencha
Inc.
+ * licensing@
sencha
.com
+ * http://www.
sencha
.com/license
*/
<div id="cls-Ext.form.TextField"></div>/**
* @class Ext.form.TextField
*/
<div id="cls-Ext.form.TextField"></div>/**
* @class Ext.form.TextField
@@
-330,14
+330,16
@@
var myField = new Ext.form.NumberField({
// private
preFocus : function(){
// private
preFocus : function(){
- var el = this.el;
+ var el = this.el,
+ isEmpty;
if(this.emptyText){
if(el.dom.value == this.emptyText){
this.setRawValue('');
if(this.emptyText){
if(el.dom.value == this.emptyText){
this.setRawValue('');
+ isEmpty = true;
}
el.removeClass(this.emptyClass);
}
}
el.removeClass(this.emptyClass);
}
- if(this.selectOnFocus){
+ if(this.selectOnFocus
|| isEmpty
){
el.dom.select();
}
},
el.dom.select();
}
},
@@
-446,15
+448,24
@@
var myField = new Ext.form.NumberField({
getErrors: function(value) {
var errors = Ext.form.TextField.superclass.getErrors.apply(this, arguments);
getErrors: function(value) {
var errors = Ext.form.TextField.superclass.getErrors.apply(this, arguments);
- value =
value ||
this.processValue(this.getRawValue());
+ value =
Ext.isDefined(value) ? value :
this.processValue(this.getRawValue());
- if
(Ext.isFunction(this.validator))
{
+ if
(Ext.isFunction(this.validator))
{
var msg = this.validator(value);
if (msg !== true) {
errors.push(msg);
}
}
var msg = this.validator(value);
if (msg !== true) {
errors.push(msg);
}
}
+ if (value.length < 1 || value === this.emptyText) {
+ if (this.allowBlank) {
+ //if value is blank and allowBlank is true, there cannot be any additional errors
+ return errors;
+ } else {
+ errors.push(this.blankText);
+ }
+ }
+
if (!this.allowBlank && (value.length < 1 || value === this.emptyText)) { // if it's blank
errors.push(this.blankText);
}
if (!this.allowBlank && (value.length < 1 || value === this.emptyText)) { // if it's blank
errors.push(this.blankText);
}