twinssbc
twinssbc
@rafaxplayer The code looks good to me. What's the issue? The event is not displayed or not in the expected date? Could you try push some dummy events to this.entrenosEvent...
@rafaxplayer No, the start date and end date should not be the same if you are using allDay event.
@rafaxplayer If you set allDay to true, you can set endTime one day later than the startTime. If you set allDay to false, you also need to set the endTime...
@rafaxplayer This is because startTime and endTime accepts a Date object, instead of number. You could set time like below ``` { title: "Training: 2020-01-30T23: 00: 00.000Z", startTime: new Date(Date.UTC(2020,1,4)),...
@rafaxplayer I think it's because you set the startTime and endTime to be the same day. Try this ``` endTime: new Date(Date.UTC(trDate.getUTCFullYear(),trDate.getUTCMonth(),trDate.getUTCDate()+1,0,0,0)), ```
@ErnestoLopez could you show your code? is it possible you bind some variable, function to both calendar?
@ErnestoLopez I think you need to have some logic that storing the previous date and not to assign a new date if the new date is the same as the...
@adnanjarfy Actually highlight the cell when clicking is only supported in month view.
@adnanjarfy You mean you don't want to display 7 days in the week view?
@adnanjafy you could set the binded currentDate to today. The calendar will navigate automatically. You could use lockSwipeToPrev option to lock swiping to the previous days.