当我将鼠标移动到树状视图中的一行并在此停留一秒时,我想看到一个浮动窗口。 (就像在开发者模式中一样。)
我该如何解决?有什么想法吗?
答案 0 :(得分:0)
当您声明在listview上呈现的字段或字段时,请确保为__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
模板