Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
804
Fire events
posted

hello... the event is never fire. Why?? I have to activate some properties??

 

 

 

 

<ignav:UltraWebTree ID="UltraWebTree1" runat="server" DefaultImage=""

 

 

HiliteClass="" HoverClass="" Indentation="20" AllowDrag="True"

 

 

OnNodeClicked="UltraWebTree1_NodeClicked">

 

 

 

protected void UltraWebTree1_NodeClicked(object sender, Infragistics.WebUI.UltraWebNavigator.WebTreeNodeEventArgs e)

{

}

Parents
No Data
Reply
  • 570
    posted

    U might check the selectable property is set to "True",

    U can also check whether all autopostback flags are set to "True"

    U can also try by declaring the event from pageload:

    UltraWebTree1.NodeClicked += new Infragistics.WebUI.UltraWebNavigator.NodeClickedEventHandler(UltraWebTree1_NodeClicked);

Children
No Data