Skip to content

Commit

Permalink
Update scheduling
Browse files Browse the repository at this point in the history
  • Loading branch information
mattamon authored and dvesh3 committed Mar 15, 2023
1 parent f636357 commit 3a22700
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -141,6 +141,14 @@ pimcore.element.scheduler = Class.create({
{text: t("date"), width: 120, sortable: true, dataIndex: 'date', editor: new Ext.form.DateField() },
{text: t("time"), width: 100, sortable: true, dataIndex: 'time', editor: new Ext.form.TimeField({
format: "H:i",
listeners: {
focus : function(component) {
component.setValue(Ext.util.Format.htmlDecode(component.value));
},
blur: function(component){
component.setValue(Ext.util.Format.htmlEncode(component.value));
}
}
})
},
{text: t("action"), width: 100, sortable: false, dataIndex: 'action', editor: new Ext.form.ComboBox({
Expand Down

0 comments on commit 3a22700

Please sign in to comment.