hi
I have found a solution to the question above.
Now, i have a question on Resource Header Template and this is what i have.
<ResourceHeaderTemplate>
<div id="ResourceDiv" runat="server">
<asp:Label ID="ResourceLabel" runat="server" BackColor="AliceBlue" Text="Label"></asp:Label>
</div>
</ResourceHeaderTemplate>
Protected Sub RadScheduler1_ResourceHeaderCreated(ByVal sender As Object, ByVal e As ResourceHeaderCreatedEventArgs)
DirectCast(e.Container.FindControl("ResourceLabel"), Label).Text = e.Container.Resource.Text
DirectCast(e.Container.FindControl("ResourceDiv"), HtmlGenericControl).Style.Add("Background", "Green")
End Sub
I am not able to set each of the resources a different background color. It is now all green.
How do i set each resources a different background color using for loop or while loop? Thanks