Hi all,
I'm trying to do this:
UltraGridRow newRw = MyGrid.DisplayLayout.Bands[0].AddNew();newRw.Cells["ID"].Value = MyGrid.ActiveRow.Cells["ID"].Value;newRw.Cells["Name"].Value = MyGrid.ActiveRow.Cells["Name"].Value;and now I want to add this newRw to MyGrid but like I see It's not possible to do it like something MyGrid.Rows.Add(newRw) or MyGrid.Rows.Insert , Is possible to do this without using DataSet ?
Hello ximki,
Could you please review the sample attached to this post and see if it meets your requirements.Please feel free to let me know if I misunderstood you or if you have any other questions.
Yes thanks, I'v found it out, that's what I need, Thank you again for fast response :)