Commit f7e7dca2 authored by Dietmar Maurer's avatar Dietmar Maurer

add DayOfWeekSelector.js

parent 0289e725
Ext.define('PVE.form.DayOfWeekSelector', {
extend: 'PVE.form.KVComboBox',
alias: ['widget.pveDayOfWeekSelector'],
initComponent: function() {
var me = this;
me.data = [
['mon', 'Monday'],
['tue', 'Tuesday'],
['wed', 'Wednesday'],
['thu', 'Thursday'],
['fri', 'Friday'],
['sat', 'Saturday'],
['sun', 'Sunday']
];
me.callParent();
}
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment