Hi Truong,
Thanks for your interest in Syncfusion products.
In order to get the current cell value while clicking on the cell , CellClick event of the GridListControl can be used. In that event, the cell value can be get by using GridStyleInfo of that current cell. Please make use of the below code,
Code example:
this.gridListControl1.Grid.CellClick += Grid_CellClick;
void Grid_CellClick(object sender, GridCellClickEventArgs e)
{
GridStyleInfo style = this.gridListControl1.Grid.Model[e.RowIndex, e.ColIndex];
MessageBox.Show("Cellvaue:" + style.CellValue.ToString());
}
Sample link:
Regards,
Piruthiviraj