Event does not fire in GDBG with unbound checkbox column

Hi, Attached is a slightly modified example from here http://support.syncfusion.com/support/kb/grid/Default.aspx I have attached an extra button in the form. However, the Click event on that button never get fired. (If I remove the QueryCellInfo and SaveCellInfo events, the button event works fine) Is that a bug? I am using Syncfustion Essential Studio version 3.3

UnboundCheckBoxColumn0.zip

1 Reply

AD Administrator Syncfusion Team June 19, 2006 05:46 PM UTC

Hi Kai, This issue has been resolved in latest version 4.2. Right now you can try handling the grid''s CheckBoxClick event to resolve this problem. Here is a code snippet private void gridDataBoundGrid1_CheckBoxClick(object sender, GridCellClickEventArgs e) { GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell; cc.MoveTo(e.RowIndex, e.ColIndex, GridSetCurrentCellOptions.BeginEndUpdate); this.gridDataBoundGrid1.Model[cc.RowIndex,cc.ColIndex ].Text = "True"; e.Cancel = true; } Let me know if this helps. Best Regards, Haneef

Loader.
Up arrow icon