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">
{
}
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);