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 1fa4c2d81d
commit eb1b9b62cd

View File

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