Date formatting as "%Y-%m-%d %H:%i" in the datatable

Hello again,

I’m trying to show date and time string together, like http://docs.webix.com/desktop__localization.html

Expected result of the code below should be date and time string “2015-06-01 15-00”, but it is “06/01/2015”. What’s wrong with the code?

webix.i18n.fullDateFormat = “%Y-%m-%d %H:%i”;
webix.i18n.setLocale();

var table_columns = [
{ id: “Time”, header: “Date и время”, sort: “date”, format:webix.i18n.fullDateFormatStr}
];

Thank you

The same code works for me

http://webix.com/snippet/5096e584

Thank you,. Maksim, it works.

My problem was misplaced initialization of the webix.i18n.fullDateFormat.

Sorry to trouble you.