Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Vaadin 7. 在我的简单场景中,我想使用Table带有SQLContainer.
Vaadin 7
Table
SQLContainer
问题是因为SQLContainer没有实现addContainerProperty方法(通常用于设置列标题)我不知道如何为我的 SQL 设置标题。
addContainerProperty
有人可以给我一个例子吗?
我从未使用过 SQLContainer,但 addContainerProperty() 不是设置标题的方法,它比标题更关键(在我看来)。您可以使用:
Table myTable = getMyTable(); myTable.setColumnHeader("header-key", "Header Caption");
希望能帮助到你