P
PeterWokke
Guest
Dear All, I want to expand child rows of the parent based on a column value in it. Infragistics posted me this example but I do not know how to convert this in ABL code. foreach (UltraGridRow row in this.ultraGrid1.Rows) { if ((bool)row.Cells["Boolean 1"].Value == false) row.Expanded = true; else row.Expanded = false; } Regards, Peter
Continue reading...
Continue reading...