Sorted number 2 by setting the Days = 1 and the StartDate = e.Date in the HeaderClick event and setting the HeaderClick type ot PostBack. Number 3 isn't important now but I'd still like to be able to do number 1.
G Bill
-
6/13/2008 5:04:52 PM
1. You should be able to modify the background color and inner HTML using BeforeHeaderRender event handler (look for e.BackgroundColor and e.InnerHTML).
3. You should be able to activate the header using BeforeHeaderRender as well. Example:
e.InnerHTML = String.Format("<a href='javascript:dpc1.refreshCallBack(new Date(\"{0}\"), 1)'
title='Go to day'>{1}</a>", JsDate.FormatDateTime(e.Date), e.InnerHTML);