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
262
Grid Databinding
posted

I have a UltraGrid with an underlying dataset and rows are added to the
dataset during a program run, how do you get the datagrid to update itself
to reflect the changes in the underlying dataset? I tried Update() and Refresh() but these don't seem to work.
Only thing that works is rebinding

//something like
ultraGrid1.DataSource = DataSource.GetInstance().oDataSetResult.Tables[0];


the datset to the datagrid control, I loose active row , expanded groups and all 
 this doesn't seem to be quite right.