Hi,
I have set date format in format string
$(“#dateTimeInput”).jqxDateTimeInput({ width: ‘235px’, height: ’25px’, theme: theme, formatString: ‘dd-MMM-yyyy HH:mm’ });
and i returned date object with:
$(“#dateTimeInput”).jqxDateTimeInput(‘getDate’);
It is giving me correct date in firefox , in the format which i require
” Date {Fri Jul 05 2013 12:31:00 GMT+0530 (India Standard Time)} ”
but for the same in IE it returns date in this format :
” Fri Jul 5 12:31:00 UTC+0530 2013 ”
Why it is returning the different values for the same object in firefox and IE?
please tell me how will i get the date in this ( ” Date {Fri Jul 05 2013 12:31:00 GMT+0530 (India Standard Time)} ” )format in IE also?
Thanks & Regards,
Snehal