| | |
| | | startTime := participation.StartDate().DateTime( timezone ).AddAsPeriod( timezone, event.StartTimeOfDay() ); |
| | | // info( this.ID(), startTime, endTime ); |
| | | if( this.ID() = 'Day' ){ |
| | | this.InitializeDay( this, row, startTime, endTime ); |
| | | this.InitializeDay( this, row, startTime, endTime, event.Description() ); |
| | | }else if( this.ID() = 'Week' ){ |
| | | this.InitializeWeek( this, row, startTime, endTime ); |
| | | this.InitializeWeek( this, row, startTime, endTime, event.Description() ); |
| | | }else{ |
| | | this.InitializeMonth( this, row, startTime, endTime ); |
| | | this.InitializeMonth( this, row, startTime, endTime, event.Description() ); |
| | | } |
| | | |
| | | } |