0
無法從GridViewDataComboBoxColumn選擇項目 - DevExpress的
我添加了一個ComboBox
我GridViewEditingMode.Batch
的列,並在顯示列表的時候它不會讓我選擇項目
List<Productos> lstProd = new List<Productos>();
column.EditorProperties().ComboBox(p =>
{
p.ValueType = typeof(string);
p.TextField = "vcDescEquipo";
p.ValueField = "vcIdClaveProv";
// p.DataSource = lstProd.ToList();
p.BindList(lstProd);
});