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
140
WebDataTree Checkbox event issue
posted

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?

 

Parents
No Data
Reply
  • 8160
    posted

    Hi Astrata,

    there is no built-in functionality on server side. You can consider this as a feature request: https://ko.infragistics.com/Login.aspx?returnURL=%2fDevCenterLogin.aspx%3freturnURL%3d%2fProtected%2fRequestFeature.aspx

    But you can hide root checkbox on client side with jQuery:

    function WebDataTree1_CheckBoxSelectionChanged(sender, eventArgs) {

                var domElement = sender.getNode(0)._element;

                $(domElement).children().filter(function (index) {

                    if (index == 1) {

                        $(this).css('display', 'none');

                    }

                });

            }

     

Children
No Data