Is your feature request related to a problem? Please describe
This line
|
[style.width.%]="timeEvent.width" |
It dynamically sets width of the event. Primary source of calculations comes from calendar utils.
But here is problem: when cell in calendar is occupied by some event (or multiple event) - user cannot click there and add one more event. On our side we show popup by click on cell. No empty space on cell --> no click happens, so user right now is forced to click elsewhere, create event there, and dnd it to correct position inside target cell, which is used.
Describe the solution you'd like
Solution: do the same what google calendar does - they leave empty space on right as padding-right. So user always has ability to emit click event on cell itself, not covering event template.
Describe your use case for implementing this feature
Creating event in calendar cell, which is already used by another event
Additional context
No response
Is your feature request related to a problem? Please describe
This line
angular-calendar/projects/angular-calendar/src/modules/week/calendar-week-view/calendar-week-view.component.ts
Line 308 in a34ed45
It dynamically sets width of the event. Primary source of calculations comes from calendar utils.
But here is problem: when cell in calendar is occupied by some event (or multiple event) - user cannot click there and add one more event. On our side we show popup by click on cell. No empty space on cell --> no click happens, so user right now is forced to click elsewhere, create event there, and dnd it to correct position inside target cell, which is used.
Describe the solution you'd like
Solution: do the same what google calendar does - they leave empty space on right as padding-right. So user always has ability to emit click event on cell itself, not covering event template.
Describe your use case for implementing this feature
Creating event in calendar cell, which is already used by another event
Additional context
No response