skypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmail
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
307 B
13 lines
307 B
9 years ago
|
/** */
|
||
|
Ext.define('Ext.aria.form.field.Time', {
|
||
|
override: 'Ext.form.field.Time',
|
||
|
|
||
|
requires: [
|
||
|
'Ext.aria.form.field.ComboBox'
|
||
|
],
|
||
|
|
||
|
// The default format for the time field is 'g:i A',
|
||
|
// which is hardly informative
|
||
|
formatText: 'Expected time format HH:MM AM or PM'
|
||
|
});
|