Documentation

parseTimeFormat

sets the default locale parsing time format. Initially it is %H:%i.

string parseTimeFormat;

Example

//altering format for North Americal locale
webix.i18n.parseTimeFormat = "%H:%i:%s";
webix.i18n.setLocale("en-US");

See also

Details

You need to call setLocale to apply the new format settings

Back to top