Hi,
I have two Valuelists column in a wingrid and the second valuelists column must be populated according to the first valuelists column selected value. Is this possible in wingrid. If it is possible please give some code samples in c#
I found the solution
this.ultraGrid1.DisplayLayout.ValueLists["ListTest"].ValueListItems.Add(1, "A");
this.ultraGrid1.DisplayLayout.ValueLists["ListTest"].ValueListItems.Add(3, "C");
this.ultraGrid1.DisplayLayout.ValueLists["ListTest"].DisplayStyle =
this.ultraGrid1.Rows[row - 2].Cells[2].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
This can be setted at run time