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