Control is an input field that I define. Whenever I click on the control, it will open the datetimepicker and append whatever date I choose onto the control for example 11/30/2015 ( Display value )
Javascript
control.datetimepicker({
pickTime:false,
language: en
});
Is there a way that I could obtain raw date (correct me if I am wrong) like this:
Wed Feb 06 2013 00:00:00 GMT+0800 (Malay Peninsula Standard Time)
As different language will have different display date value, it will be great if I am able to obtain raw date to do processing into my server.