Hi,
Is there a event that gets raised on double clicking a row selector. Say, I have a status color on the row selector, when the user double clicks the row selector, the status message is displayed at the bottom on the status bar?
Thanks,
Vijayan
Thanks Hady. That worked.
use the doubleclickrow even and check the rowarea
private void ultraGrid1_DoubleClickRow(object sender, DoubleClickRowEventArgs e)
{
if (e.RowArea == RowArea.RowSelectorArea)
}