Posted 15 Mar 2012 Link to this post
RadDatePicker
Posted 16 Mar 2012 Link to this post
protected
void
RadGrid1_ItemDataBound(
object
sender, GridItemEventArgs e)
{
if
(e.Item
is
GridFilteringItem)
GridFilteringItem item = (GridFilteringItem)e.Item;
RadDatePicker pkr = (RadDatePicker)item[
"BirthDate"
].Controls[0];
pkr.SelectedDate = DateTime.Now;
}
Posted 18 Mar 2012 Link to this post
Posted 19 Mar 2012 Link to this post
RadCalendarDay NewDay =
new
RadCalendarDay();
NewDay.Repeatable = RecurringEvents.Today;
NewDay.ItemStyle.BackColor = System.Drawing.Color.Red;
pkr.SharedCalendar.SpecialDays.Add(NewDay);