Thank you for help.
It works. But I got side-effect problem.
When I click a cell with drop-down list, the drop-down list does not appear because of the "CLICK" event. I guess we should not put the
code in "TableControlCellClick" event, instead, we should put the code in event like "Grid Selected Row Changed"? But I don''t know which Grid event?
TIA
>Maybe the TableCOntrolCellClick event will work for you.
>
>private void gridGroupingControl1_TableControlCellClick(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCellClickEventArgs e)
>{
> GridRecord rec = this.gridGroupingControl1.Table.CurrentRecord as GridRecord;
> if(rec != null)
> {
> DataRowView drv = rec.GetData() as DataRowView;
> }
>}
>