I'm using the built-in Calendar control. It works, but in a few places the way the HTML is rendered is broken or not CSS-friendly and unfortunately cannot be changed (it's hard coded). I was hoping they would fix this in .NET 4.0, but as far as I can tell the Calendar control hasn't been changed at all. Also, as far as I know, there's no CSS adapter for the Calendar control.

So, I would need a control that would:

  • Allow me to customize the content of each cell (like OnDayRender works)
  • Allow me to assign CSS classes to any HTML it may render
  • Not render anything automatically that cannot be turned off, except layout code
  • No auto-postback or auto-JS code (I can handle these by hand using simple links or custom JS calls)

Basically a simple calendar view control that would give me full rendering control.

What would you recommend?

Thanks!

link|improve this question

using a jquery calendar is an option? – Claudio Redi May 13 '10 at 2:06
Just because there isn't an adapter for it doesn't mean you can't write your own (maybe a PITA, but possible). – R0MANARMY May 13 '10 at 2:08
@Claudio: Everything I found about jQuery calendar is showing it as a date picker. I would need the calendar to be always visible and add lots of custom code in each cell. – pbz May 13 '10 at 2:16
@R0MANARMY: True :-) – pbz May 13 '10 at 2:16
There are other calendars besides the datepicker. Take a look here webdesignbooth.com/…. Are any of those helpful by any chance? – R0MANARMY May 13 '10 at 2:27
show 4 more comments
feedback

1 Answer

up vote 0 down vote accepted

Couldn't find what I was looking for, so I wrote one: http://basecalendar.codeplex.com/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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