search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Events automatically created from 12:00 AM -12:00PM

Asked by Jim
16 years ago.
The Calendar control sometime automatically creates Events than span the whole day from 12:00 am to 12:00 pm

http://www.daypilot.org/sandbox/Calendar/
You can also navigate to the above online demo, on the Calendar control if you navigate to "All AJAX features", from
day Feb 24 to Feb 28, 2008 those seems to be also un-needed all day events created because of the bug.
Comment posted by Dan Letecky
16 years ago.
This is not a bug. This event ("Event 11") is generated in Demo/App_Code/DataGenerator.cs:

dr = dt.NewRow();
dr["id"] = 11;
dr["start"] = Convert.ToDateTime("00:00").AddDays(8);
dr["end"] = Convert.ToDateTime("00:00").AddDays(15);
dr["name"] = "Event 11";
dr["column"] = "D";
dt.Rows.Add(dr);

It's an event that takes 7 days and by default it's rendered as 7 pieces (event parts), one in each day. It can be also moved to the all-day area by adding:

dr["allday"] = true;
This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.