Issue 2296: Event Object start and end are not Moment-ish enough
Status:  Released
Owner: ----
Closed:  Nov 2014
Reported by alexi...@gmail.com, Sep 25, 2014
According to documentation EventObject start and end properties accept Moment-ish strings. But apparently it is not so.

I get object from the server that were serialized with ASP.NET MVC JsonSerializer which uses a weird format for DateTime serializing. Here is a sample object:

{
  "id": "1",
  "start": "\/Date(1239018869048)\/"
  "end": "\/Date(1239018869048)\/"
}

This DateTime format is weird but Moment supports it. If I try to render this event, nothing happens. But if I set start property to moment(start) and end to moment(end) it works.
Oct 30, 2014
Project Member #1 adamrs...@gmail.com
(No comment was entered for this change.)
Summary: Event Object start and end are not Moment-ish enough (was: EventObject Start and End are not Moment-ish enough)
Status: Reproducing
Labels: Type-Bug
Nov 25, 2014
Project Member #2 adamrs...@gmail.com
The problem in your example was not that FC doesnt accept ASP dates, it was that the start and and were identically equal, which is technically invalid. Since 2.2.3 (just released), if this happens, it sends the end to null. Better default behavior. This will fix your problem.
Status: Released