I am going mad with this. I can do it in gridview but I am battling to get it done in radGridView.
These lines are from a grid view in a winform that I should replace with a radGrid:
Basically I simply ned to get the content of the cell where I perform the mouse click. How you do the equivalent of the above using a radGrid?
These lines are from a grid view in a winform that I should replace with a radGrid:
private void DataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
var location = Convert.ToString(dataGridView1[e.ColumnIndex, e.RowIndex].Value);
if (dataGridView1.Columns[e.ColumnIndex] is DataGridViewLinkColumn)
if (e.ColumnIndex == 4)
Process.Start(location);
else if (e.ColumnIndex == 5)
{
int i = dataGridView1.CurrentCell.RowIndex;