Community
Participate
Working Groups
},
_setWeekday : function() {
var tmpDate = new Date();
var tmpDay = parseInt( this._dayTextField.getText(), 10 );
tmpDate.setFullYear( parseInt( this._yearTextField.getText(), 10 ) );
var tmpMonth = this._monthInt - 1;
tmpDate.setMonth( this._monthInt - 1 );
var tmpYear = parseInt( this._yearTextField.getText(), 10 );
tmpDate.setDate( parseInt( this._dayTextField.getText(), 10 ) );
var tmpDate = new Date( tmpYear, tmpMonth, tmpDay );
this._weekdayTextField.setText( this._weekday[ tmpDate.getDay() + 1 ] );