Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am supplying a full DateTime located at model.StartDate in the following code:

@Html.DisplayFor(model => model.StartDate.ToString("hh:mm tt"),
CultureInfo.CreateSpecificCulture("hu-HU"));

My goal is to take the full DateTime

8/30/2012 11:33:48 AM

and display only

11:33:48 AM

however, I get the following error:

Templates can be used only with field access, property access,
single-dimension array index, or single-parameter custom indexer expressions.

Why is this error happening?


Note: I referenced this documentation to format my .ToString for my DateTime: http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspx

share|improve this question

2 Answers

up vote 1 down vote accepted

You can put a DataAnnotation on your model class. Something like this -> [DisplayFormat(DataFormatString = "{0:d}", ApplyFormatInEditMode = true)].

share|improve this answer
For reference, the exact formatting I needed was: [DisplayFormat(DataFormatString = "{0: h:mm tt}", ApplyFormatInEditMode = true)] – Ecnalyr Aug 30 '12 at 18:33

Create a new property on your model that returns the formatted date.

public class MyModel
{
    // Other fields including your current StartDate

    public class StartDateFormatted
    {
        get 
        { 
            return StartDate.ToString("hh:mm tt"), 
               CultureInfo.CreateSpecificCulture("hu-HU"));
        }
    }
}

Then use that property in your Razor markup

@Html.DisplayFor(model => model.StartDateFormatted);
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.