or
Protected Sub RadScheduler1_TimeSlotCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.TimeSlotCreatedEventArgs) Handles RadScheduler1.TimeSlotCreated If (DateTime.Compare(e.TimeSlot.Start.[Date], RadScheduler1.SelectedDate) = 0) Then e.TimeSlot.CssClass = "SelectedDate" End If If e.TimeSlot.Start.[Date].DayOfWeek = DayOfWeek.Saturday Then e.TimeSlot.CssClass = "SelectedDate" End IfEnd Sub
div.RadTreeView .rtPlus, div.RadTreeView .rtMinus {
display: none;
}
but when i apply this css it is appying to both the treeview controls which i dont want, i want to apply this css to second treeview control.
Thanks
<div style="font-size: xx-small"> <telerik:RadTreeView ID="rtvTreeView" CheckBoxes="true" runat="server" Font-Size="XX-Small" OnNodeExpand="rtvTreeView_NodeExpand" EnableDragAndDrop="True" EnableDragAndDropBetweenNodes="True" OnNodeDrop="rtvTreeView_NodeDrop"> <CollapseAnimation Type="InQuint" Duration="100"></CollapseAnimation> <ExpandAnimation Duration="100" Type="None"></ExpandAnimation> </telerik:RadTreeView> </div>