vote up 0 vote down star

Can anyone recommend a free asp.net control that I can use for the following:

  • Weekdays Monday-Saturday along the top row
  • Time of day along left hand side
  • Template fields for the actual data
  • Databindable
  • Cells span the rows based on the start time and end time

Here is a control that I found that is pretty good, but I am trying to find alternatives: Databound Schedule controls

flag

1 Answer

vote up 1 vote down check

DayPilot is a pretty good general purpose calendaring/schedule control.

The full version is not free, but there is a "lite" version available which is not only free but open source!

link|flag
I downloaded day pilot to try. The problem is that it doesn't show weekdays along the top, but actual dates. – Ronnie Overby Mar 31 at 13:40
@Ronnie - You can alter the "HeaderDateFormat" and set it to a custom value (i.e. "dddd" for just the Weekday name). See the "HeaderDateFormat.aspx" file in the "/demo" folder of the DayPilot Lite download. – CraigTP Mar 31 at 14:05
@CraigTP - Nice! The only thing that I think it's missing is the template for displaying data. It only takes 1 field: DataTextField property. Is there a way to show more than one piece of data? I am going to try and aggregate the data into some HTML and see what the control does. – Ronnie Overby Mar 31 at 15:08
@Ronnie - You should be able to assign some HTML as a string to the DataTextField property as this should display fine within the control. (for example, I tried it with "<h1>Test</h1>" and it displayed the word "Test" in the correct Heading 1 style. Be careful of space, though. – CraigTP Mar 31 at 16:56
@CraigTP - Yes, space ended up being the problem. The cells do not resize vertically to accommodate for the cell content. I ended up using the control that I linked to in the original post. Thanks! – Ronnie Overby Mar 31 at 20:36
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.