I have a date stored as a Date in SQL Server. The date shows 4/24/2014 when I query in SQL. That is correct. The date is correctly brought over to the client side in UTC. To
For me, because we use a very old version of the library, and given an object expiration_date returned by the datepicker, I had to find a workaround and tweaked it like that :
expiration_date.setMinutes(-expiration_date.getTimezoneOffset());
Which will set the requested date to its corresponding UTC date but still expressed in local timezone format.
For me it worked well. Hope it can help someone.