diff --git a/scm-webapp/src/main/webapp/resources/js/override/ext.form.field.js b/scm-webapp/src/main/webapp/resources/js/override/ext.form.field.js index 907921adf9..759d1895c7 100644 --- a/scm-webapp/src/main/webapp/resources/js/override/ext.form.field.js +++ b/scm-webapp/src/main/webapp/resources/js/override/ext.form.field.js @@ -51,13 +51,19 @@ Ext.override(Ext.form.Field, { src: 'resources/images/help.png', cls: cls }); - - Ext.QuickTips.register({ + + var quickTip = { target : helpButton, title : '', text : text, enabled : true - }); + }; + + if (this.helpDisableAutoHide){ + quickTip.autoHide = !this.helpDisableAutoHide; + } + + Ext.QuickTips.register(quickTip); }, getHelpButtonClass: function(){