This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Is there a way to populate a specific date on the calendar with data? Like on Outlook, where I can add items to a specific day? |
|
|
Hello You can provide data to a calendar control using the ICalendarDataProvider interface. Start by implementing this interface and its single method. The method takes in the DateTime that data is being requested for, and the current calendar view. This will either be a MonthView or YearView. You'll want to check if the view is MonthView so you can provide data to individual days. This technique lets you provide data for individual days of a month, or months of a year. And you can also apply templates to display this data however you like on the calendar if you wish. One thing that is missing at the moment is dynamically updating the visuals if the data changes or if data is dynamically added. If this is something you need, let us know. Jason Fauchelle |
|