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
215
How to handle the mouseclick event in the UltraGrid cell which in edit mode ?
posted

How can I handle the mouse click event in the UltraGrid cell which in edit mode ?

Parents
No Data
Reply
  • 71886
    Offline posted

    Hello wangchanel,

    You could try the following approach for your scenario:

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

    {

     if (e.Cell.IsInEditMode)

    {

        //Here you could perform the needed actions

    }

    }

    Please do not hesitate to ask if something comes up.

     

Children