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.
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(); }