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 中以百分比设置表格的列宽。如果可以告诉我如何使用示例代码片段进行操作。提前致谢。
是的。为此使用 Table.setColumnExpandRatio(columnId, ratio)。
假设您的表中有属性“foo”、“bar”和“baz”。如果你这样做:
table.setColumnExpandRatio("foo",1); table.setColumnExpandRatio("bar",2); table.setColumnExpandRatio("baz",1);
你会得到 25% 到 foo 和 baz 和 50% 到 bar