<
telerik:RadTreeView ID="RadTreeView1" MultipleSelect="false" OnNodeDrop="RadTreeView1_HandleDrop" EnableDragAndDropBetweenNodes="true" EnableDragAndDrop="true"
OnClientNodeDropping="onNodeDropping" EnableViewState="true" runat="server">
</telerik:RadTreeView>
---------------------------------------------------
function onNodeDropping(sender, args)
{
args.get_sourceNode().set_text(args.get_sourceNode().get_text() +
"_" + args.get_sourceNode().get_value());
}
---------------------------------------------------
In the below event I need to access the updated text. But When I try access the sourceNode.text, it is giving old text only
Protected Sub RadTreeView1_HandleDrop(ByVal sender As Object, ByVal e As RadTreeNodeDragDropEventArgs)
Dim sourceNode As RadTreeNode = e.SourceDragNode
Dim destNode As RadTreeNode = e.DestDragNode
End Sub
Please help me to get the updated text in code behind.
Thanks in advance
Balaji Velasiri
Hi,
I have Rad Combo box with scroll bar to handle Long Name. It wors fine in IE 7.
But in IE 6 it does not show scroll bar .
Request you to please suggest.
----------------------------------Code Snippet -------------------------------------------
<td style="width: 90%">
<rad:RadComboBox ID="Combo1" Height="100px" Width="40%" runat="server" AllowCustomText="false" Skin="Outlook"
MarkFirstMatch="false" AutoPostBack="false">
</rad:RadComboBox>
</td>
-----------------------------------------------------------------------------
Thanks and regards,
Manish Patel
| Public Shared Function fileUpload(ByVal file As System.Web.UI.HtmlControls.HtmlInputFile, ByVal documentType As Enums.DocumentType) |
| For Each File As UploadedFile In RadUpload1.UploadedFiles |
| Dim filename As String = File.GetName |
| '//Cast file name |
| Next |
| var strArray = new[] { "~/Upload/a8991277-77b6-4f8c-922a-a61d6fdc181e/02f99ae0-f2b5-4135-b58e-9a6a9205345b/" }; |
| editor.DialogHandlerUrl = "~/Telerik.Web.UI.DialogHandler.axd"; |
| // |
| editor.ImageManager.ViewPaths = editor.ImageManager.UploadPaths = editor.ImageManager.DeletePaths = strArray; |