Changeset 9937

Show
Ignore:
Timestamp:
08/03/07 08:45:17 (17 months ago)
Author:
doughays
Message:

Fixes #3948. Proxy commit for haysmark.
The Calendar of an empty DateTextbox? displays the current date instead of the null 1969 date.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/form/TimeTextbox.js

    r9806 r9937  
    4444                        this.inherited('setValue', arguments); 
    4545                        if(this._picker){ 
     46                                // #3948: fix blank date on popup only 
     47                                if(!date){date=new Date();} 
    4648                                this._picker.setValue(date); 
    4749                        }