I’m using Scheduler for ASP.NET MVC, but I noticed an inconvenient bug when using a custom format for xml_date in combination with a MVC form in the lightbox. The date used below in the example is 4th of March.
When using the default US-format “%m/%d/%Y %H:%i”, after saving the event in the lightbox and returning the correct response with the SchedulerFormResponseScript, the event appears automatically onto the scheduler (no need for a page refresh).
<html><body style='display:none'>{"action":"insert", sid:"0", "data":{"id":55,"start_date":"03/04/2013 8:55","end_date":"03/04/2013 12:20","text":"testing 123"}}</body></html>
When changing the xml_format to the default EU-format “%d/%m/%Y %H:%i”, the response from SchedulerFormResponseScript contains the new date format, but the event won’t appear on the scheduler. A page refresh is needed.
<html><body style='display:none'>{"action":"insert", sid:"0", "data":{"id":55,"start_date":"04/03/2013 8:55","end_date":"04/03/2013 12:20","text":"testing 123"}}</body></html>
Could someone look into this? I’ve bought a license for a client case we’re working on, but with this bug present the scheduler is not usable for EU date format.
Any help would be appreciated.