Skip to content

Commit

Permalink
[ApplicationLogger] Improve Date & Time fields error tooltips (#14606)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvesh3 committed Mar 10, 2023
1 parent abdb17f commit d35d071
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bundles/AdminBundle/Resources/public/js/pimcore/log/admin.js
Expand Up @@ -261,24 +261,28 @@ pimcore.log.admin = Class.create({
this.fromDate = new Ext.form.DateField({
name: 'from_date',
width: 130,
invalidText: 'Enter date as MM/DD/YYYY',
xtype: 'datefield'
});

this.fromTime = new Ext.form.TimeField({
name: 'from_time',
width: 100,
invalidText: 'Enter time as HH:MM AM/PM',
xtype: 'timefield'
});

this.toDate = new Ext.form.DateField({
name: 'to_date',
width: 130,
invalidText: 'Enter date as MM/DD/YYYY',
xtype: 'datefield'
});

this.toTime = new Ext.form.TimeField({
name: 'to_time',
width: 100,
invalidText: 'Enter time as HH:MM AM/PM',
xtype: 'timefield'
});

Expand Down

0 comments on commit d35d071

Please sign in to comment.