CellClick event?

Can I handle a CellClick Event in Grid?

Hi,

This control doesn't provide cell click event, but it can fire double-click event.

Henry

I tried this code

this.gridDesktop.DoubleClick+=new EventHandler(gridDesktop_DoubleClick);

private void gridDesktop_DoubleClick(object sender, EventArgs e)

{

MessageBox.Show("double");

}

But I see MessageBox only when i doble click on Row/Column Headers

Could u add an event like onCellClick with some EventArgs structure, containin row and column of clicked cell!

Hi,

We will release this feature in a hot fix tomorrow.

Thanks a lot!!

We have implemented CellClick event for desktop control. The event provides CellEventArgs argument that you can manipulate the cell Row Column properties.