I have the following sample code in the load of the SS:
foreach (UltraGridRow row in ultraGrid1.Rows)
{
row.Cells[
"UnitCrit"].Value = "A";
"SubSystemCrit"].Value = "B";
"PackageCrit"].Value = "C";
}
Which sets the unbound columns value for each row - the unbound columns are all read only. This works great, however each row ends up w/ a the pencil beside the row. I want the row to be listed as "Unchanged" / "UnEditted" after loading the SS.
Hello ,
Please add the following code line just after you iterate through the rows collections and assign a value for the cells of your unbound column (just after the code that you are posted here):
ultraGrid1.UpdateData();
Please let me know if you have any further questions.