Hi Guys
I have Jiwa grid to which I have added a checkbox column as shown in the code below (I have left out the other columns for simplicity and this is in a custom form), all of this works fine including loading the grid with lines of data, however I am at a bit of a loss as to how to capture the value of the checkbox changing, on the normal spread control there is the Check changed event and on a stand alone grid I've used CellClickEnd before , which with the Jiwa Grid gives the correct row and column for but not the value as it changes, any ideas as to what I might try?
jgNonDeliveries.AddColumn("Chosen", new FarPoint.Win.Spread.CellType.CheckBoxCellType(), "Select", 5, false, true, false, false);
jgNonDeliveries.ActiveSheet.OperationMode = FarPoint.Win.Spread.OperationMode.RowMode;
jgNonDeliveries.EditModePermanent = false;
jgNonDeliveries.SelectionBlockOptions = FarPoint.Win.Spread.SelectionBlockOptions.Rows;
jgNonDeliveries.SetupComplete();
Thanks


