
It is waste of time and wasting time of developers.
I have a node template
<Nodes>
<telerik:RadTreeNode>
<NodeTemplate>
<span style="font-weight: bold" id="Span1" runat="server">
<%#ObjectDescription%>
<span style="color: Navy" id="Span2">
<%#Length%>
</span><span style="color: Red" id="Span3">(<%#PercentageLength%>%)</span>
</span>
</NodeTemplate>
</telerik:RadTreeNode>
</Nodes>
I 'm trying to load these nodes for on domand .But I can't make HTML format for my template.
node.text = 'Format for my above Template
node.Value = row(
"ObjectID").ToString()
urgently required ...wasting my time
Hello,
I have a splitter control with 2 panes separated by a vertical split bar. Is there a way to let each pane have its own vertical scrollbar?
Thanks!

If Not Session("old_cell") Is Nothing Then
Dim _tmp_grid_cell As GridTableCell
_tmp_grid_cell =
DirectCast(DirectCast(Session("old_cell"), System.Object), Telerik.Web.UI.GridTableCell)
_tmp_grid_cell.BackColor = Drawing.Color.Empty
End If
Session(
"old_cell") = DirectCast(DirectCast(sender.parent, System.Object), Telerik.Web.UI.GridTableCell)
'Change color of new cell
DirectCast(DirectCast(sender.parent, System.Object), Telerik.Web.UI.GridTableCell).BackColor = Drawing.Color.Orange
Thank you for your help.