Is there a way to make the calendar events wrap? The calendar controls don’t seem to wrap and don’t allow many characters for event descriptions.
Yes, you can just add to the string before your description to allow the text to wrap. So you need to do a concat in your SQL query something like:
SELECT CONCAT("", Description) …
The concat could be different depending on your database.