sets the default locale parsing time format. Initially it is %H:%i.
//altering format for North Americal locale
webix.i18n.parseTimeFormat = "%H:%i:%s";
webix.i18n.setLocale("en-US");
You need to call setLocale to apply the new format settings
Back to top