dxCalendarA does not save time changes if date not clicked

Hello,
using grid verson 5.1.0.9. The popup calendar opening in columns dxCalendarA does not save changes to time part of the datetime. Only by clicking again on the date itself will make the time to be saved.
To be more clear: if you open the calendar and just change the time without clicking on the date, and click outside the calendar o press tab to go to the next column, the time is not saved. You must click again on the selected date to make the time changes saved.
We could expect that time changes are saved also on lost focus.

Any suggestion is appreciated.
Wendy

Please, try to add the following code to your grid initialization:
myGrid.attachEvent(“onDhxCalendarCreated”,function(myCalendar){
myCalendar.attachEvent(“onTimeChange”, function(d){
myGrid.editor.obj.value=myCalendar.getFormatedDate(d)
myCalendar.setDate(d);
return true
});
});