Hi,
I am trying to implement the CheckboxSelectionEventHandler. However, it is not firing after a postback. I am setting the handler on the server side.
this.wdtFleet.AutoPostBackFlags.CheckBoxSelectionChanged = Infragistics.Web.UI.AutoPostBackFlag.On;
this.wdtFleet.CheckBoxSelectionChanged += new DataTreeCheckBoxSelectionEventHandler(wdtFleet_CheckBoxSelectionChanged);
It fires for the first time, however after a postback, it stops working.
Another thing, is there any way to hide the check box of the parent node on server side?
Please disregard the first issue that I mentioned above. I was able to figure it out.
Please just answer my question above.
The real issue on the first post is that I have two event handler, one is for the Checkboxselection and another is for the node click. When i check on the check box, it is triggering the node click function/event plus the CheckboxSelectionChange event. When i click on the node, it is also triggering the CheckboxSelectionChang. We are not sure why this is happening.
Hope you can help. Thanks.