加载时禁用 Vaadin table 工具提示

Disabling Vaadin table tooltip while loading

我正在使用 Vaadin TreeTable 来显示一堆项目。 单击一个节点时,我关闭所有其他节点并打开单击的节点。

有什么方法可以避免工具提示显示当前范围和项目总数?
我发现这是一个 Vaadin 功能,但我没有找到任何禁用它的可能性..

Vaadin 之书的片段: "While the data is being loaded, a tooltip will be displayed that shows the current range and total number of items in the table." (在 https://vaadin.com/book/vaadin7/-/page/components.table.html

只需使用 css:

.v-table-scrollposition{ display: none !important;}