BUG Fix the date field conditional to work with dropdown.

In this case they keyup will not be triggered at all.
This commit is contained in:
Mateusz Uzdowski 2012-09-11 10:26:37 +12:00 committed by Will Rossiter
parent 12e8c675ff
commit 4cc811d1c0

View File

@ -566,7 +566,7 @@ JS
// @todo encapulsation
$action = "change";
if($formFieldWatch->ClassName == "EditableTextField" || $formFieldWatch->ClassName == "EditableDateField") {
if($formFieldWatch->ClassName == "EditableTextField") {
$action = "keyup";
}