将鼠标悬停在“?”上时删除工具提示符号

时间:2012-02-03 12:29:42

标签: python openerp

请参阅屏幕截图,并建议如何删除红色文本 (帮助黄色框中的'object :: res users Field :: new_password')

1 个答案:

答案 0 :(得分:3)

注意:我假设您正在运行OpenERP v6。

找到文件openerp.ui.tips.js,它应该在您的Web客户端文件夹中。如果您在Linux下,可以通过在终端中键入以下命令来找到它:

sudo find / -type f -name 'openerp.ui.tips.js'

接下来,在您选择的编辑器中打开文件并找到以下行:

...

this.toolTitle = SPAN({'class': 'tipTitle'});
this.toolText = P({'class': 'tipText'});
this.toolModel = SPAN({'class': 'tipExtra'});
this.toolField = SPAN({'class': 'tipExtra'});
this. modelTitle = SPAN({'style': 'font-weight:bold;'}, _('Object')+' :: ')
this.fieldTitle = SPAN({'style': 'font-weight:bold;'}, _('Field')+' :: ')

...

只需在工具提示中注释您不需要的那些行,并用空字符串替换它们。在你的情况下,你必须这样做:

...

this.toolTitle = SPAN({'class': 'tipTitle'});
this.toolText = P({'class': 'tipText'});
this.toolModel = '';//SPAN({'class': 'tipExtra'});
this.toolField = '';//SPAN({'class': 'tipExtra'});
this. modelTitle = '';//SPAN({'style': 'font-weight:bold;'}, _('Object')+' :: ')
this.fieldTitle = '';//SPAN({'style': 'font-weight:bold;'}, _('Field')+' :: ')

...

重新启动Web客户端。问题解决了。

PS: OpenERP中的红色文本工具提示非常有用,尤其是在您根据自己的需要进行自定义时。在决定隐藏它们之前请三思而后行。