Good morning.
I have problems with radDock layout and serialization. My problems are also visible in the application examples provided with radControls. I use Visual Studio 2008 Express Edition on a Windows XP OS. RadControls version is RadControls for WinForms Q2 2009 SP1.
The same behaviour I obtain in my applications.
Thank you.
GridViewSelectedRowsCollection RowCollection = new GridViewSelectedRowsCollection(); |
RowCollection.Add(RadGrid1.CurrentRow); |
protected void RadScheduler1_TimeSlotCreated(object sender, TimeSlotCreatedEventArgs e)
{
switch (e.TimeSlot.Start.Date.DayOfWeek)
{
case DayOfWeek.Monday:
e.TimeSlot.CssClass =
"rsCategoryRed";
break;
case DayOfWeek.Sunday:
e.TimeSlot.CssClass =
"rsCategoryBlue";
break;
case DayOfWeek.Wednesday:
e.TimeSlot.CssClass =
"rsCategoryYellow";
break;
case DayOfWeek.Tuesday:
e.TimeSlot.CssClass =
"rsCategoryBlack";
break;
default:
break;
}
}
Ineed to apply the Wraptext box in the entire cell.......