I got a model like this:
public class MainModel
{
public string Id {get;set;}
public string Title {get;set;}
public TimePicker TimePickerField {get;set;}
}
TimePicker is inner model which looks like this:
public class TimePicker
{
public TimeSpan {get;set;
public AmPmEnum AmPm {get;set;}
}
I'm trying to create a custom model binding for inner model: TimePicker
The question is: How do i get values in custom model binder what was submitted in form into TimePicker model fields?
if i try to get it like that:
var value = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
i just get null into value.
my model binder its not supposed to work actualy because im not sure how to implement it correctly.
public class TimePickerModelBinder : DefaultModelBinder
{
public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
if (bindingContext == null)
{
throw new ArgumentNullException("bindingContext");
}
var result = new TimePicker();
var value = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
if (value != null)
{
bindingContext.ModelState.SetModelValue(bindingContext.ModelName, value);
try
{
//result = Duration.Parse(value.AttemptedValue);
}
catch (Exception ex)
{
bindingContext.ModelState.AddModelError(bindingContext.ModelName, ex.Message);
}
}
return result;
}
}
thanks
IModelBinderor if you subclassed theDefaultModelBinder. And another thing that is not clear is in which method of this model binder are you attempting to callbindingContext.ValueProvider.GetValue(bindingContext.ModelName);(obviously if you are directly implementing IModelBinder there would be a single method: BindModel). – Darin Dimitrov Jan 24 at 20:36