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.
Up arrow icon