G
Guest
Here's my problem.
I'm using a TreeView that doesn't have dblclick as an attribute. So I
attempt to create an attribute for that but using below code:
Me.tvEntities.Attributes.Add("onclick", "ExpandNode()")
This is code for ExpandNode() in client side:
<script language="VBScript" runat="server">
Private Sub ExpandNode(ByVal sender As Object, ByVal e As
System.EventArgs)
Textbox1.Text = "Hello!"
End Sub
</script>
For some reason, ExpandNode is not called. Did I write wrong code for
adding an attribute? Thanks in advance.
I'm using a TreeView that doesn't have dblclick as an attribute. So I
attempt to create an attribute for that but using below code:
Me.tvEntities.Attributes.Add("onclick", "ExpandNode()")
This is code for ExpandNode() in client side:
<script language="VBScript" runat="server">
Private Sub ExpandNode(ByVal sender As Object, ByVal e As
System.EventArgs)
Textbox1.Text = "Hello!"
End Sub
</script>
For some reason, ExpandNode is not called. Did I write wrong code for
adding an attribute? Thanks in advance.