Merged in bugfix/PMCORE-2007 (pull request #7461)
PMCORE-2007 Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
committed by
Julio Cesar Laura Avendaño
commit
1dba138d63
@@ -220,13 +220,24 @@ 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) {
|
||||||
|
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(),
|
target: c.getEl(),
|
||||||
listeners: {
|
listeners: {
|
||||||
'show': function (t) {
|
'show': function (t) {
|
||||||
|
|||||||
Reference in New Issue
Block a user