Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting a very strange exception.
I have a model with a TimeSpan property and try to create a view.

public class Clock {

    [DataType(DataType.Time)]
    [DisplayFormat(DataFormatString = @"{0:hh\:mm}", ApplyFormatInEditMode = true)]
    public TimeSpan Time {get;set;}
}

@Html.EditorFor(model => model.Time)

That is what I get

[InvalidOperationException: The model item passed into the dictionary is of type 'System.TimeSpan', but this dictionary requires a model item of type 'System.String'.]
System.Web.Mvc.ViewDataDictionary`1.SetModel(Object value) +321071
System.Web.Mvc.ViewDataDictionary..ctor(ViewDataDictionary dictionary) +377
System.Web.Mvc.WebViewPage`1.SetViewData(ViewDataDictionary viewData) +48

I've used this technique in another project and it works, but in my current project it fails and I don't know my. Maybe I've missed something or something is disabled.

share|improve this question
What does your Editor Template look like? – Jerad Rose Nov 14 '12 at 17:35
In my previous project I had only DateTime.cshtml template and it works. So I haven't created Editor Template for TimeSpan. – Igor Nov 14 '12 at 17:51
That's your problem then. It's probably using a default template, as Editor Templates, by default, use any custom templates you've set up based on name, unless you override by specifying the template name. So you should create a TimeSpan editor template to handle properties of this type. – Jerad Rose Nov 14 '12 at 17:53
Then I don't understand why it works in another project. – Igor Nov 14 '12 at 18:05
Without seeing the code from that project, it would be hard for us to know either. But I'm speculating either it wasn't a TimeSpan type, or you had an editor template for TimeSpan defined, or you didn't use an editor template. Do you have other editor templates in your current project? – Jerad Rose Nov 14 '12 at 18:07
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.