我有一个Vaadin表,其中某些列的内容宽度可以变化很大。有时,可能没有一行包含几个字符的行。其他时候,可能会有行,其中的文本足以填满整个屏幕。
我想设置一个明确的列宽,以防止该列默认情况下占用过多空间。这可以通过Table#setColumnWidth
完成。但是,如果该列的所有值都小于指定的宽度,那么我想恢复到自动调整大小,以便该列仅根据需要的宽度而定。
在所有情况下,我仍然希望该列可以手动调整大小。
本质上,我想说“自动调整大小,最大宽度为x
”。有没有办法做到这一点?
最佳答案
有可能的。您将需要跳入Javascript。 SSCCE:
@com.vaadin.annotations.JavaScript("main.js")
public class QwertUI extends UI {
@WebServlet(value = "/*", asyncSupported = true)
@VaadinServletConfiguration(productionMode = false, ui = QwertUI.class)
public static class Servlet extends VaadinServlet {
}
@Override
protected void init(VaadinRequest request) {
final VerticalLayout layout = new VerticalLayout();
layout.setMargin(true);
setContent(layout);
final Table table = new Table("The Brightest Stars");
table.addContainerProperty("Name", String.class, null);
table.addContainerProperty("Mag", Float.class, null);
Object newItemId = table.addItem();
Item row1 = table.getItem(newItemId);
row1.getItemProperty("Name").setValue("Sirius");
row1.getItemProperty("Mag").setValue(-1.46f);
// Add a few other rows using shorthand addItem()
table.addItem(new Object[]{"Canopus", -0.72f}, 2);
table.addItem(new Object[]{"Arcturus", -0.04f}, 3);
table.addItem(new Object[]{"Alpha Centaurissssssssssssssssssssssssssssssssssssssssssss", -0.01f}, 4);
JavaScript.getCurrent().addFunction("YouAreWelcome", new JavaScriptFunction(){
@Override
public void call(JsonArray arguments)
{
Object o = arguments.get(0).asString();
table.setColumnWidth("Name", new Integer(o.toString()));
}
});
JavaScript.getCurrent().execute("WeChooseToGoToTheMoon()");
table.setPageLength(table.size());
layout.addComponent(table);
}
}
和main.js
function WeChooseToGoToTheMoon(){
var myMaxWidth = 200;
var elements = document.getElementsByClassName("v-table-cell-content");
var maxSize = -1;
for(i=0; i<elements.length; i++){
if(elements[i].clientWidth > maxSize){
maxSize = elements[i].clientWidth;
}
}
if(maxSize < myMaxWidth){
YouAreWelcome(maxSize);
}else{
YouAreWelcome(myMaxWidth);
}
}
您可能需要调整JavaScript以适应您的需求。