Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
475
Double click on a Row selector
posted

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

Parents
No Data
Reply
  • 5520
    Verified Answer
    posted

    use the doubleclickrow even and check the rowarea 

     private void ultraGrid1_DoubleClickRow(object sender, DoubleClickRowEventArgs e)

            {

                if (e.RowArea == RowArea.RowSelectorArea)

                {

     

                }

            }

Children