string val = (string)grid.GetRowValuesByKeyValue(e.KeyValue, "keyid");
ASPxComboBox com = e.Editor as ASPxComboBox;
if (string.IsNullOrEmpty(val)) return;
BusinessAspxGridView bus = new BusinessAspxGridView();
List<string> editor = bus.Selectruser(val);
foreach (string s in editor)
{
com.Items.Add(s);
}
为什么下拉项没有出来呢?