Hi,
I'm the same user from ticket610565
.
I decided to use RadGridView instead of RadListView because it's performance is much better....
I use the grid with only one column - which includes simple text but also links, but without the HyperlinkColumn (I must have only one column so the control will look like a list of messages).
I also registered for the cellClick event:
The question is how can I start the link open process ONLY when the user click on the TEXT, and not anywhere in the specific cell.
Thanks,
Hila.
I'm the same user from ticket
.
I decided to use RadGridView instead of RadListView because it's performance is much better....
I use the grid with only one column - which includes simple text but also links, but without the HyperlinkColumn (I must have only one column so the control will look like a list of messages).
I also registered for the cellClick event:
private void radGridView1_CellClick(object sender, Telerik.WinControls.UI.GridViewCellEventArgs e)
{
GridViewCellInfo cell = (GridViewCellInfo)radGridView.Rows[e.RowIndex].Cells[e.ColumnIndex];
if (cell.Tag != null)
{
Process.Start(cell.Tag.ToString());
}
}
The question is how can I start the link open process ONLY when the user click on the TEXT, and not anywhere in the specific cell.
Thanks,
Hila.