converts a Date object to a string in the parsing format
date | object | a Date object |
string | a time as a string in the parsing format |
var text = webix.i18n.parseFormatStr(new Date());
The default format is defined by the locale in use and initially it's "%Y-%m-%d "%H:%i:%s" ( the default MySQL date format ).
Back to top