in my example - the selected date is coming from the previous component:
i'm setting the selected date manually!
if I select the Date in the component - it is working.. but not if it is set as a transfer parameter..
I'm using:
"@syncfusion/ej2-vue-schedule": "^18.4.49",
public mounted() {
console.log("schedule start... ");
this.showQuickInfoMutable = this.showQuickInfo;
this.readOnlyMutable = this.readOnly;
this.allowDragAndDropMutable = this.allowDragAndDrop;
if (this.abwZeitraum) {
let von: any;
if (this.abwZeitraum.neuerZeitbereich) {
von = this.abwZeitraum.neuerZeitbereich;
} else {
von = this.abwZeitraum;
}
if (von) {
this.selectedDate = von;
}
<ejs-schedule
id="Schedule"
v-if="showSchedule"
ref="schedule"
:enablePersistence="persistence"
:activeView="activeView"
:currentView="activeView"
:eventSettings="eventSettings"
:selectedDate="selectedDate"
:showWeekNumber="showWeekNumber"
:popupOpen="onPopupOpen"
:readonly="readOnlyMutable"
:eventRendered="onEventRendered"
:showQuickInfo="showQuickInfoMutable"
:quickInfoOnSelectionEnd="showQuickInfoMutable"
@navigating="navigating"
@actionBegin="onActionBegin"
@actionComplete="actionCompleted"
:firstDayOfWeek="1"
:showTimeIndicator="true"
:showLoading="true"
:dateFormat="dateFormat"
cssClass="dvh"
:allowDragAndDrop="allowDragAndDropMutable"
:dragStart="onDragStart"
:renderCell="onRenderCell"
:group="group"
:rowAutoHeight="true"
:allowResizing="allowResizing"
:resizeStart="onResizeStart"
:height="myHeight"
:minDate="minDate"
:resourceHeaderTemplate="resourceHeaderTemplate"
:timeScale="timeScale"
:dataBound="onDataBound"
>