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
155
Double click cell in ultragrid
posted

 Hello!

 Is there an event that allow me to get the value of a cell when a double click is done?

 I was trying to find a DoubleClickCell event but it dosen't exists, the only I found was DoubleClick but it for the component... :(

Parents
No Data
Reply
  • 594
    posted
    If you're talking about the Windows Grid, there's definitely a DoubleClickCell event on the UltraWinGrid I have, v7.2. Infragistics.Win.UltraWinGrid.UltraGrid grid = new Infragistics.Win.UltraWinGrid.UltraGrid(); grid.DoubleClickCell += new Infragistics.Win.UltraWinGrid.DoubleClickCellEventHandler(OnGrid_DoubleClickCell);
Children