Changeset 8396
- Timestamp:
- 05/01/07 23:05:11 (19 months ago)
- Files:
-
- 1 modified
-
trunk/src/widget/DropdownDatePicker.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/widget/DropdownDatePicker.js
r7542 r8396 176 176 {formatLength:this.formatLength, datePattern:this.displayFormat, selector:'dateOnly', locale:this.lang}); 177 177 // if inputDate is in a valid range, we call setDate 178 if(!this.datePicker._isDisabledDate(inputDate) ){178 if(!this.datePicker._isDisabledDate(inputDate) && inputDate != null){ 179 179 this.setDate(inputDate); 180 180 }