Changeset 8396

Show
Ignore:
Timestamp:
05/01/07 23:05:11 (19 months ago)
Author:
ktiedt
Message:

fixes #2674

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/widget/DropdownDatePicker.js

    r7542 r8396  
    176176                                                {formatLength:this.formatLength, datePattern:this.displayFormat, selector:'dateOnly', locale:this.lang});                        
    177177                                // if inputDate is in a valid range, we call setDate 
    178                                 if(!this.datePicker._isDisabledDate(inputDate)){ 
     178                                if(!this.datePicker._isDisabledDate(inputDate) && inputDate != null){ 
    179179                                        this.setDate(inputDate); 
    180180                                }