Datepicker setValue not working since V10.3

Hello webix friends.
I have been using the webix library for many years, but since V10.3,
the following operation (datepicker setValue) has not been working correctly.
How should I specify the method to set date information as a string?

$$(“end_date”).setValue(“2025/3/1”); //Script error not working correctly

$$(“end_date”).setValue(new Date(“2025/3/1”)); //working correctly

https://snippet.webix.com/3mpc8vkb

V10.2 is working correctly

Hello Noriyuki.Y,

Since version 10.3 there were Breaking Changes which concerned the format property. Now the format property can be set only as an object or as a string(not as function).
Please take a look at the examples:

  1. format as a string: Code Snippet
  2. format as an object: Code Snippet
1 Like

Hello Natalia_Shilova-san
I understood the new description (format:“%Y/%m/%d”).
Thanks.