Hi
I try to bind a generic collection (`List`) to a GridComboBoxColumn in a SfDataGrid, but the items of the list aren't shown in the combo box.
XAML looks like this:
< syncfusion:GridComboBoxColumn HeaderText="Test Combo" AllowEditing="True" x:Name="cmbTest"/ >
while my C# looks like this:
private List comboList = new List { "Test1", "Test2", "test3" };
public MainWindow()
{
InitializeComponent();
this.cmbTest.ItemsSource = comboList;
this.Loaded += OnLoaded;
}
Can anyone assist me?