I have ComboBoxEdit filled with data and I want to put it to column.
ComboBoxEdit cbe = new ComboBoxEdit();
DataTable dt = Getdt();
cbe.Properties.Items.Clear();
foreach(DataRow item in dt.Rows)
{
cbe.Properties.Items.Add(item);
}
//ElementsEdit ee
ee.gvView.Columns[ColumnName].ColumnEdit = cbeMaterialy;
It doesn't work. Any help appreciate ;)
PS. How can I assign full DataTable to ComboBoxEdit.