Hi all!
I’m trying to change this pattern to “%d/%m/%Y %H:%i”, but when I do this in controller action
public ActionResult LightboxControl(Event ev) ev has start_time and end_time equal to 1/1/0001
Can somebody help with this?
Hi all!
I’m trying to change this pattern to “%d/%m/%Y %H:%i”, but when I do this in controller action
public ActionResult LightboxControl(Event ev) ev has start_time and end_time equal to 1/1/0001
Can somebody help with this?
Hello,
try creating Event instance manually.
DHXEventHelper should apply scheduler’s date format public ActionResult LightboxControl(int? id, FormCollection actionValues)
{
var ev = DHXEventsHelper.Bind<Event>(actionValues);
Thanks a lot!!! This solved my problem