Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
f34b138a
Commit
f34b138a
authored
Sep 03, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #4225: Added `ActiveForm::validateOnBlur` and `ActiveField::validateOnBlur`
parent
212c5ee3
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
5 deletions
+27
-5
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
yii.activeForm.js
framework/assets/yii.activeForm.js
+6
-1
ActiveField.php
framework/widgets/ActiveField.php
+7
-2
ActiveForm.php
framework/widgets/ActiveForm.php
+6
-1
ActiveFieldTest.php
tests/unit/framework/widgets/ActiveFieldTest.php
+7
-1
No files found.
framework/CHANGELOG.md
View file @
f34b138a
...
...
@@ -175,6 +175,7 @@ Yii Framework 2 Change Log
-
Fixed PBKDF2 key truncation.
-
Adjusted API.
-
Enh #4209: Added
`beforeCopy`
,
`afterCopy`
,
`forceCopy`
properties to AssetManager (cebe)
-
Enh #4225: Added
`ActiveForm::validateOnBlur`
and
`ActiveField::validateOnBlur`
(qiangxue)
-
Enh #4297: Added check for DOM extension to requirements (samdark)
-
Enh #4317: Added
`absoluteAuthTimeout`
to yii
\w
eb
\U
ser (ivokund, nkovacs)
-
Enh #4360: Added client validation support for file validator (Skysplit)
...
...
framework/assets/yii.activeForm.js
View file @
f34b138a
...
...
@@ -79,6 +79,8 @@
encodeError
:
true
,
// whether to perform validation when a change is detected on the input
validateOnChange
:
false
,
// whether to perform validation when the input loses focus
validateOnBlur
:
false
,
// whether to perform validation when the user is typing.
validateOnType
:
false
,
// number of milliseconds that the validation should be delayed when a user is typing in the input field.
...
...
@@ -235,7 +237,10 @@
if
(
attribute
.
validateOnChange
)
{
$input
.
on
(
'change.yiiActiveForm'
,
function
()
{
validateAttribute
(
$form
,
attribute
,
false
);
}).
on
(
'blur.yiiActiveForm'
,
function
()
{
});
}
if
(
attribute
.
validateOnBlur
)
{
$input
.
on
(
'blur.yiiActiveForm'
,
function
()
{
if
(
attribute
.
status
==
0
||
attribute
.
status
==
1
)
{
validateAttribute
(
$form
,
attribute
,
!
attribute
.
status
);
}
...
...
framework/widgets/ActiveField.php
View file @
f34b138a
...
...
@@ -95,11 +95,16 @@ class ActiveField extends Component
*/
public
$enableAjaxValidation
;
/**
* @var boolean whether to perform validation when the
input field loses focus and its value is found
changed.
* @var boolean whether to perform validation when the
value of the input field is
changed.
* If not set, it will take the value of [[ActiveForm::validateOnChange]].
*/
public
$validateOnChange
;
/**
* @var boolean whether to perform validation when the input field loses focus.
* If not set, it will take the value of [[ActiveForm::validateOnBlur]].
*/
public
$validateOnBlur
;
/**
* @var boolean whether to perform validation while the user is typing in the input field.
* If not set, it will take the value of [[ActiveForm::validateOnType]].
* @see validationDelay
...
...
@@ -717,7 +722,7 @@ class ActiveField extends Component
$inputID
=
Html
::
getInputId
(
$this
->
model
,
$this
->
attribute
);
$options
[
'id'
]
=
$inputID
;
$options
[
'name'
]
=
$this
->
attribute
;
foreach
([
'validateOnChange'
,
'validateOnType'
,
'validationDelay'
]
as
$name
)
{
foreach
([
'validateOnChange'
,
'validateOn
Blur'
,
'validateOn
Type'
,
'validationDelay'
]
as
$name
)
{
$options
[
$name
]
=
$this
->
$name
===
null
?
$this
->
form
->
$name
:
$this
->
$name
;
}
$options
[
'container'
]
=
isset
(
$this
->
selectors
[
'container'
])
?
$this
->
selectors
[
'container'
]
:
".field-
$inputID
"
;
...
...
framework/widgets/ActiveForm.php
View file @
f34b138a
...
...
@@ -100,11 +100,16 @@ class ActiveForm extends Widget
*/
public
$validateOnSubmit
=
true
;
/**
* @var boolean whether to perform validation when
an input field loses focus and its value is found
changed.
* @var boolean whether to perform validation when
the value of an input field is
changed.
* If [[ActiveField::validateOnChange]] is set, its value will take precedence for that input field.
*/
public
$validateOnChange
=
true
;
/**
* @var boolean whether to perform validation when an input field loses focus.
* If [[ActiveField::$validateOnBlur]] is set, its value will take precedence for that input field.
*/
public
$validateOnBlur
=
true
;
/**
* @var boolean whether to perform validation while the user is typing in an input field.
* If [[ActiveField::validateOnType]] is set, its value will take precedence for that input field.
* @see validationDelay
...
...
tests/unit/framework/widgets/ActiveFieldTest.php
View file @
f34b138a
...
...
@@ -268,12 +268,14 @@ EOD;
$actualValue
=
$this
->
activeField
->
getClientOptions
();
$expectedJsExpression
=
"function (attribute, value, messages, deferred) {return true;}"
;
$expectedValidateOnChange
=
true
;
$expectedValidateOnBlur
=
true
;
$expectedValidateOnType
=
false
;
$expectedValidationDelay
=
200
;
$actualJsExpression
=
$actualValue
[
'validate'
];
$this
->
assertEquals
(
$expectedJsExpression
,
$actualJsExpression
->
expression
);
$this
->
assertTrue
(
$expectedValidateOnChange
===
$actualValue
[
'validateOnChange'
]);
$this
->
assertTrue
(
$expectedValidateOnBlur
===
$actualValue
[
'validateOnBlur'
]);
$this
->
assertTrue
(
$expectedValidateOnType
===
$actualValue
[
'validateOnType'
]);
$this
->
assertTrue
(
$expectedValidationDelay
===
$actualValue
[
'validationDelay'
]);
}
...
...
@@ -288,6 +290,7 @@ EOD;
$actualValue
=
$this
->
activeField
->
getClientOptions
();
$expectedJsExpression
=
"function (attribute, value, messages, deferred) {return true;}"
;
$expectedValidateOnChange
=
true
;
$expectedValidateOnBlur
=
true
;
$expectedValidateOnType
=
false
;
$expectedValidationDelay
=
200
;
$expectedError
=
".help-block"
;
...
...
@@ -295,6 +298,7 @@ EOD;
$actualJsExpression
=
$actualValue
[
'validate'
];
$this
->
assertEquals
(
$expectedJsExpression
,
$actualJsExpression
->
expression
);
$this
->
assertTrue
(
$expectedValidateOnChange
===
$actualValue
[
'validateOnChange'
]);
$this
->
assertTrue
(
$expectedValidateOnBlur
===
$actualValue
[
'validateOnBlur'
]);
$this
->
assertTrue
(
$expectedValidateOnType
===
$actualValue
[
'validateOnType'
]);
$this
->
assertTrue
(
$expectedValidationDelay
===
$actualValue
[
'validationDelay'
]);
$this
->
assertTrue
(
1
===
$actualValue
[
'enableAjaxValidation'
]);
...
...
@@ -317,6 +321,7 @@ EOD;
.
"{ return 'yii2' == 'yii2'; }(attribute, value)) { return true; }}"
;
$expectedValidateOnChange
=
true
;
$expectedValidateOnBlur
=
true
;
$expectedValidateOnType
=
false
;
$expectedValidationDelay
=
200
;
$expectedError
=
".help-block"
;
...
...
@@ -324,6 +329,7 @@ EOD;
$actualJsExpression
=
$actualValue
[
'validate'
];
$this
->
assertEquals
(
$expectedJsExpression
,
$actualJsExpression
->
expression
);
$this
->
assertTrue
(
$expectedValidateOnChange
===
$actualValue
[
'validateOnChange'
]);
$this
->
assertTrue
(
$expectedValidateOnBlur
===
$actualValue
[
'validateOnBlur'
]);
$this
->
assertTrue
(
$expectedValidateOnType
===
$actualValue
[
'validateOnType'
]);
$this
->
assertTrue
(
$expectedValidationDelay
===
$actualValue
[
'validationDelay'
]);
$this
->
assertTrue
(
1
===
$actualValue
[
'enableAjaxValidation'
]);
...
...
@@ -364,7 +370,7 @@ class ActiveFieldExtend extends ActiveField
}
/**
* Useful
l
to test other methods from ActiveField, that call ActiveField::getClientOptions()
* Useful to test other methods from ActiveField, that call ActiveField::getClientOptions()
* but it's return value is not relevant for the test being run.
*/
public
function
getClientOptions
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment