PMCORE-2007

This commit is contained in:
Henry Jordan
2020-09-01 19:54:09 +00:00
parent d60dbe1e37
commit 84a0bd38ae

View File

@@ -220,14 +220,25 @@ Ext.onReady(function() {
maxValue: 14400, maxValue: 14400,
listeners: { listeners: {
keyup: function (txt, e) keyup: function (txt, e) {
{
changeSettings(6); changeSettings(6);
}, },
render : function(c) invalid: function (c) {
{ var msg = this.getMessageHandler();
new Ext.ToolTip({ if (c && msg) {
target : c.getEl(), c.tooltip.disable();
msg.mark(this, _("ID_REFRESH_TIME_SCOPE") + "\n" + c.activeError);
}
},
valid: function (c) {
if (c) {
c.tooltip.enable();
Ext.QuickTips.disable();
}
},
render: function (c) {
c.tooltip = new Ext.ToolTip({
target: c.getEl(),
listeners: { listeners: {
'show': function (t) { 'show': function (t) {
t.update(_("ID_REFRESH_TIME_SCOPE")); t.update(_("ID_REFRESH_TIME_SCOPE"));