Event tooltip implementation #135
farmitaroma
started this conversation in
Ideas
Replies: 2 comments 2 replies
-
Hey, can you share how it looks like visually? Maybe a screenshot or a video |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hi, it would be awesome if I could do that without editing vendor files. In month view I can't even see all the event title... Could you give me some advice or directions to implement any type of tooltip/modal on hover or click? Thanks and thank you for this cool plugin |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
I've implemented a tooltip feature for this package and I'm sharing the changes I've made, hoping that this feature will be considered for addition:
I added the following dependencies to package.json:
{ "@popperjs/core": "^2.11.8", "uuid": "^9.0.1"}
Then, inside the filament-fullcalendar.js file, i imported:
and I modified the Calendar object options:
I also created a tooltip.css file inside the resource/css directory:
This file was then imported into filament-fullcalendar.css:
@import "tooltip.css";
After these changes, providing a 'popper_title' property to a calendar event will display a tooltip with the 'popper_title' value on a calendar event mouseover.
Beta Was this translation helpful? Give feedback.
All reactions