this.radTTSched.Statuses.Add(new AppointmentStatusInfo(0, "Booked", Color.Green, Color.Green, AppointmentStatusFillType.Solid));
this.radTTSched.Statuses.Add(new AppointmentStatusInfo(1, "Show", Color.Blue, Color.Blue, AppointmentStatusFillType.Solid));
this.radTTSched.Statuses.Add(new AppointmentStatusInfo(2, "No Show", Color.Red, Color.Red, AppointmentStatusFillType.Solid));
this.radTTSched.Statuses.Add(new AppointmentStatusInfo(3, "Cancel", Color.Red, Color.Red, AppointmentStatusFillType.Solid));
All colors will show correctly in my scheduler except Status = 2 for No Show. If I change this value from 2 to any other value, it works correctly. Is there something sacred about status value of 2? This is a legacy database that I am integrating with and I am not able to change that value from 2 to something else. Please help!
Dim
objForm As New Form
Dim hostWindow As HostWindow = RadDock1.DockControl(objForm , DockPosition.Right)
RadDock1.AddDocument((hostWindow), DockPosition.Fill)
'hostWindow.AutoScroll = True
hostWindow.HorizontalScroll.Enabled =
True
hostWindow.VerticalScroll.Enabled =
True
Thanks,
Satyajeet



I am trying to create my custom gridview controls which inherit from radgridview.
The Code:
public partial class eRadGridView : Telerik.WinControls.UI.RadGridView
{
public eRadGridView()
{
InitializeComponent();
}
public eRadGridView(IContainer container)
{
container.Add(this);
InitializeComponent();
}
}
When I try to droll it from the toolbox, I get the attach error.
Please let me know what I am doing wrong.

How can I override the default mouse over backcolor (orange color) by code?
Thanks.
@{
var headerHtmlAttributes = new { style = "font-weight:bold" };
Html.Telerik().Grid<
WorkflowDashboardModel>()
.HtmlAttributes(
new { style = "text-align:center" })
.Name(
"WorkFlowDashBoardExp")
.Columns(columns =>
{
columns.Bound(d => d.SourceSystem)
.HeaderHtmlAttributes(headerHtmlAttributes);
columns.Bound(d => d.NewException)
.HeaderHtmlAttributes(headerHtmlAttributes);
}
i want to give a header column for the column headers as top one.
how can i do? please help.