Hey everyone 馃憢
I'm now on GitHub sponsors, so if you're using this calendar and would like to support me financially, please consider becoming a backer. Bronze sponsors even get higher priority when filing issues!
If you're a company using this project, then you can use GitHub sponsors as a means of purchasing a monthly support contract, by becoming a Silver Sponsor for only $250 a month! Platinum sponsors even get a free one to one consultation with me, where I'll help guide you on how to integrate this calendar within your application.
Alternatively, if you'd like to make a one time donation, you can paypal me instead.
If you have any questions then please feel to comment below 馃憞
sent you $5 CAN... thanks for the awesome work
I would like to disallow clicking future events .. this is easily accomplished but it still looks clickable. is there a easy way to remove the styling .. ie i tried to set actions?: EventAction[]; to null
I would like to disallow clicking future events .. this is easily accomplished but it still looks clickable. is there a easy way to remove the styling .. ie i tried to set actions?: EventAction[]; to null
You can alter the styling of events by setting a cssClass on them, then use that to make them look disabled.
sent you $5 CAN... thanks for the awesome work
Thank you!! 馃槃
I would like to disallow clicking future events .. this is easily accomplished but it still looks clickable. is there a easy way to remove the styling .. ie i tried to set actions?: EventAction[]; to null
You can alter the styling of events by setting a
cssClasson them, then use that to make them look disabled.
easy enough
.cal-event-disabled .cal-event-title {
text-decoration: none !important;
cursor: default !important;
}
Most helpful comment
easy enough
.cal-event-disabled .cal-event-title { text-decoration: none !important; cursor: default !important; }