[HttpPost]
public ActionResult Index([ModelBinder(typeof(DevExpressEditorsBinder))] IndexModel model)
{
var initialData = GenerateInitialData();
UpdateModel(initialData);
return View(initialData);
}
This controller throws an InvalidOperationException on the UpdateModel line when the view contains a DevExpress combobox. Do you know what is causing this?
I’m attaching a project to demonstrate to problem.
Thanks,
Aske