Hi,
I’m using v2.8.2 version.
I noticed one issue with jqxDateTimeInput control while binding with knockout. I used in the following way
<div style=’margin-top: 3px;’ id=’date_expected’ class=’date_expected’ data-bind=”jqxDateTimeInput: { width: ‘200px’, height: ’20px’, formatString: ‘MM-dd-yyyy’, theme: theme, value: DateValue} “>
</div>
The issue i got is the date which is binding is one day less than the actual date which i’m assigning.
For example :
The DateValue is coming as 27/3/2013
But the value binding as 26/3/2013
I found the same issue in jqxGrid and fixed it by giving the format in data adapter
{ name: ‘DateValue’, type: ‘date’, format: “yyyy-MM-ddTHH:mm:ss” },
Can anyone suggest me any solution for this issue
Thanks in advance,
Naresh