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
215
Add new row in UltraGrid Win
posted

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 ?

Parents Reply Children
No Data