Hello
There are two grids.How to add checked first grid columns value to second grid?
thanks in advance
Hello,
I believe that you could achieve this through the following code, assuming you have two datatables called dt and dt2, for grid1 and grid2 respectively:
private void ultraGrid1_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e)
{
if (bool.Parse(this.ultraGrid1.ActiveCell.Text))
dt2.ImportRow(dt.Rows[e.Cell.Row.Index]);
}
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.