112 questions
0 votes
0 answers
65 views
Angular Calendar (mwl-calendar) scrolls indefinitely on touch devices after dragging an event
I am using Angular Calendar (mwl-calendar) in my project. On touch devices, I am encountering the following issue: When I drag an event and it triggers auto-scroll, the auto-scroll does not stop even ...
0 votes
0 answers
58 views
Angular calendar: right-click listener doesn't fire
I'm in the process of upgrading an existing implementation of the angular-calendar component by adding a right-click context menu for the calendar events. I have already looked into upgrading it by ...
0 votes
0 answers
25 views
Angular-calendar: during navigation week view is rendered next to previous week view
I am using the angular-calendar component in an Ionic Angular project and have problems implementing a calendar in week view. When navigating the calendar (forward or backward), the week view gets ...
0 votes
0 answers
47 views
TypeErrors when upgrading existing angular-calendar project to Angular 18
I'm upgrading an existing project to Ionic 8 and Angular 18. The project uses the angular-calendar component and was previously working fine. In the upgraded environment I am getting following errors: ...
1 vote
0 answers
36 views
angular-calendar : order event by meta data?
I have implemented angular-calendar from (https://github.com/mattlewis92/angular-calendar) in my angular project and it works fine. Somehow, users ask me to make it better. Now I'm trying to show ...
0 votes
1 answer
682 views
How can I use angular-calendar in Angular 17 as a standalone project?
I'm trying to add the angular-calendar to my standalone project, but the demos only work if you have app.module.ts, which I don't have as I'm using a standalone project. This is the one I'm trying to ...
0 votes
1 answer
199 views
Angular-Calendar problem loading async events on custom cell template
I'm developing and app that displays the daily price of a hotel room on a calendar generated with angular-calendar. This is my component.ts: events$!: Observable<CalendarEvent<{ hotel: Hotel }&...
2 votes
1 answer
573 views
Angular Calendar Scheduler custom eventTemplate no working properly
I followed the usage on this npm page to recreate the calendar schedular view, now I want to change the event template, so that I can add some event buttons and icons to it. I created a custom ...
1 vote
0 answers
297 views
CalendarEvents dont show data in angular 15
Im devoloping a calendar with some events from database but dont appear any event in calendar. I follow this demo https://mattlewis92.github.io/angular-calendar/#/no-events-label I tried to populate ...
2 votes
0 answers
450 views
Angular Calendar is not working in different timezones with daylight savings
I am using angular-calendar to show the time in week view where I can drag and drop and customize the timings. Here is the sample code below from angular calendar:- Note that this only happening when ...
0 votes
1 answer
616 views
Angular-calender short date format not working
I would like to use the shorte date format that you can see here customise-date-formats I am using angular-calendar 0.28.28. But I get this erreur monthViewDayNumber is not a valid date formatter. ...
0 votes
1 answer
169 views
angular-calendar - month date, event date mismatch
I am using angular-calendar version - 0.26.4. When event with date 2023-02-03T00:00:00.000Z added to the events array it get shifted to Feb 2nd. Following is the object receives in the calendar ...
1 vote
0 answers
540 views
Angular calendar external event drop to day view scheduler
I am working on the Angular calendar and the requirement is to drop external event to the day timeline to specific user. I am using day-view-scheduler for day view timeline and external events. https:/...
0 votes
0 answers
61 views
can't fetch angular calendar events by getting data from Firestore
I'm using Angular Calendar to display some events, data is stored in Firestore. this is my code : events$!: Observable<CalendarEvent<{ drop: Drop }>[]>; let drops$ = from(this.drops); ...
0 votes
0 answers
430 views
Not able to update events title in angular calendar
I tried to get the single event from events and then update the values. Even if I can update the values like title and color the update only shows in the onclick modal but I wanted to use my actual ...