当我将鼠标移动到树视图中的一行并在这里停留一秒钟时,我想看到一个浮动窗口。(就像在开发者模式中一样。)
我该如何解决?任何想法?
当您声明在列表视图上呈现的一个或多个字段时,请确保您向该__init__
方法提供help='My Floating Test'
参数。当您将鼠标悬停在该字段上时,这将导致显示一个浮动窗口。
例如检查:
addons/account/models/account.py
tag_ids = fields.Many2many('account.account.tag', 'account_account_account_tag', string='Tags', help="Optional tags you may want to assign for custom reporting")
帮助属性上的字符串将显示在所有呈现此字段的视图上,并将鼠标悬停在该字段上并暂停 1 秒。
如果要修改显示的窗口,可以扩展
t-name="WidgetLabel.tooltip"
位于addons/web/static/src/xml/base_common.xml