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
35
How to UltraGrid Single Row Click Event?
posted

Hello, All.

1. UltraGrid Row,  MouseClick . Call Event AfterRowActivate Event

2. But,  This Select Row , more MouseClick,  not Call  AfterRowActivateEvent

(Select / Unselect)

How to Single RowClick Event?

or  UltraGrid Click Event  Action Only Row?
(Click Event is Call GridEmpty Panel , Grid Header  )

Help me

Parents
  • 71886
    Offline posted

    Hello isutori,

    If I understood you right, I believe that you could use the 'ClickCell' event of the 'UltraGrid' control. Something like the following code sample:

    private void ultraGrid1_ClickCell(object sender, Infragistics.Win.UltraWinGrid.ClickCellEventArgs e)

    {

    //e.Cell.Row

    }

    The above will fire everytime you click on a cell(this guarantees that you have clicked on a row too) and you could get all the information about the row and the cell you have clicked on.

    Please feel free to let me know if I misunderstood you or if you have any other questions.

Reply Children