i have problem in datepicker

i cant to display the initial value in date picker. when i pass 01/30/1991 it changed to 11/11/1908.

var show_date=webix.Date.dateToStr("%m/%d/%Y");

{name:“date”, view:“datepicker”, format:show_date},

data=[{date:“01/30/1991”}];

Addtional::

in Datatable i used $init:function(obj){ }… that worked properly… in the form dont know how to use it

Hi,

parseFormat for date is “%Y-%m-%d %H:%i” in all views. So, date should be loaded in this format:

http://docs.webix.com/api__i18n_parseformat_other.html

dateFormat is applied for Date display. And it is “%m/%d/%Y” for “en” locale:

http://webix.com/snippet/442fceff