Hi telerik team,
i had my code to create new node and option to enter its name in the radtreeview.
as the code below.
it is working in IIS6 and not in IIS7 can any one help me about this.
i had my code to create new node and option to enter its name in the radtreeview.
as the code below.
it is working in IIS6 and not in IIS7 can any one help me about this.
Private Sub startNodeInEditMode(ByVal nodeValue As String) 'find the node by its Value and edit it when page loads Dim js As String = "Sys.Application.add_load(editNode); function editNode(){ " js += "var tree = $find(""" + ObjFoldersTree.ClientID + """);" js += "var node = tree.findNodeByValue('" + nodeValue + "');" js += "if (node) tree._startEdit(node); " js += "Sys.Application.remove_load(editNode);};" RadScriptManager.RegisterStartupScript(Page, Page.[GetType](), "nodeEdit", js, True) End Sub