From d35d0712858f24d0ec96ddfd4cbe82ff4b5a5fbb Mon Sep 17 00:00:00 2001 From: Divesh Pahuja Date: Fri, 10 Mar 2023 10:07:04 +0100 Subject: [PATCH] [ApplicationLogger] Improve Date & Time fields error tooltips (#14606) --- bundles/AdminBundle/Resources/public/js/pimcore/log/admin.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bundles/AdminBundle/Resources/public/js/pimcore/log/admin.js b/bundles/AdminBundle/Resources/public/js/pimcore/log/admin.js index 25212ef17a8..17cba30e3c4 100644 --- a/bundles/AdminBundle/Resources/public/js/pimcore/log/admin.js +++ b/bundles/AdminBundle/Resources/public/js/pimcore/log/admin.js @@ -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' });