Hello, does anyone can say, how to simply put values from DataTable to DevExpress comboBoxEdit Items. In WinForms it was simply like that:
dtCat = SqlHelper.GetTable("base_UserCategory_Select", new string[] {});
DataRow dr = dtCat.NewRow();
dr["UserCategoryID"] = 0;
dr["CategoryName"] = "< All >";
dr["IsSystem"] = "False";
dtCat.Rows.InsertAt(dr, 0);
comboBox1.DataSource = dtCat;
How to assign values to DevExpress comboBoxEdit like this?