search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Asp.net MVC scheduler not showing AM/PM format

Asked by Karthik
3 years ago.

Hello,

We are developing Asp.net MVC scheduler booking resource application, we need AM and PM format Timeline header is not showing . Please help any sample code for update.
TimeHeaders = new TimeHeaderCollection()
{
new TimeHeader(GroupBy.Month),
new TimeHeader(GroupBy.Day, "tt"),
new TimeHeader(GroupBy.Cell ),
},

mvc
Answer posted by Dan Letecky [DayPilot]
3 years ago.

You can try this:

TimeHeaders = new TimeHeaderCollection()
{
  new TimeHeader(GroupBy.Month),
  new TimeHeader(GroupBy.Day),
  new TimeHeader(GroupBy.Cell, "tt"),
},
Comment posted by Karthik
3 years ago.

Thank you very much. It is showing AM/PM format.

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.