GWT:设置树小部件宽度

时间:2014-07-24 05:36:12

标签: css gwt tree smartgwt

我已经为树添加了一个自定义TreeItem.SreeItem有一个水平面板,其底边宽度为1px高度,使它看起来像一个表行(所以基本上我想让树看起来像树表)。但问题是,树的宽度受其内容的限制。我无法增加树的宽度使其看起来像桌子。我尝试增加树项目中存在的水平面板的宽度,但是没有#&# 39;工作。任何人都可以帮我这个吗?。

1 个答案:

答案 0 :(得分:1)

试试这个:

.gwt-Tree table {
    table-layout: fixed;
    width: 100%;
}
.gwt-Tree table td:first-child {
    width: 18px;
}