We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Subscribing to the checkboxclick event for a nested table.

I am using the grid grouping control with nested tables containing check box columns at both the parent table and child table level. I am current subscribing to

this.ggcFcstOpt.TableControl.CheckBoxClick += new GridCellClickEventHandler(TableControl_CheckBoxClick);

This only fires when the parent level checkbox column is clicked.

Is there a way to subscribe to some kind of child level event for the checkbox click?

thx for your time.

dP

2 Replies

HA haneefm Syncfusion Team June 14, 2007 08:06 PM UTC

Hi DP,

You can use the TableControlCheckBoxClick event to detect check changes in a grid and let me know if this helps.

[C#]
this.gridGroupingControl1.TableControlCheckBoxClick += new GridTableControlCellClickEventHandler(gridGroupingControl1_TableControlCheckBoxClick);

void gridGroupingControl1_TableControlCheckBoxClick(object sender, GridTableControlCellClickEventArgs e)
{
Console.WriteLine("check box click");
}

Best regards,
Haneef


DP dP June 14, 2007 08:27 PM UTC

Yep that worked, thx.

Loader.
Live Chat Icon For mobile
Up arrow icon