Dear all,
In initialize the form, I have init ultragrid. Could I add one column without refreshing the whole grid, it means no clear the data in the ultragrid? Any sample code??
DataTable dt;
public void showGrid()
{
dt=new DataTable();
dt.columns.Add(dc); ...........
DataRow dr=dt.NewRow();
.....
dt.Rows.add(dr);
this.ultraGrid1.DataSource = dt;
}
Hello,
What do you mean by "no clear the data in the ultragrid"? Adding one column would not affect the data in any way - there would not be any clearing of the data. Take a look at the attached sample, I am not getting the described effect.
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.