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
20
Get all the cell values on double clicking a row
posted
Hi,



I'm new to the c#.net development . I'm using ultra grid to populate a dataset of 4 columns.



By double clicking on a row, i need to get the value of all 4 cells for the selected row.



Kindly help on this.
Parents
No Data
Reply
  • 5520
    posted

    private void ultraGrid1_DoubleClickRow(object sender, DoubleClickRowEventArgs e) { e.Row.GetCellValue("col1").ToString() + e.Row.GetCellValue("col2").ToString() + e.Row.GetCellValue("col3").ToString() + e.Row.GetCellValue("col4").ToString(); }

Children
No Data