Dear All,
I would like to expand child rows based on a column condition in the parent row after the refresh on the UltraGrid.
For example only those rows where the column "comfired" = false need to be expanded.
Kind regards,
Peter.
foreach (UltraGridRow row in this.ultraGrid1.Rows) { if ((bool)row.Cells["Boolean 1"].Value == false) row.Expanded = true; else row.Expanded = false; }
Hello Mike,
I try to write this in Progress ABL
But the compiler does not understand it after the for each.
for each (UltraGridRow row in ultraGridOutput): if ((bool)row.Cells["Confirmed"] = false) then row:expanded = true. end.
Hope you can help me on some ABL coding.
Peter