Datepickwer with default value

If we set a datepicker with an initial value, the value returned is with time. But if we select the value manually it return the data correctyle .
I thinks that if the datepicker have the property timepicker = false, it should be truncate date automacally.

Example
https://snippet.webix.com/dgrvqtkl
Thanks

Hello,

stringResult returns the value formatted according to default locale-specific format
webix.i18n.parseFormatStr. This format is used globally in all date-to-string conversions.

Hovewer, you can customize the current behaviour by creating a datepicker-based control with a custom getValue method. As a quick example, please check:

Code Snippet

Thanks