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.
我试图在 GWT-GRID 中将列宽设置为零以使其隐藏。我试过
grid.GetColumnFormatter().setWidth(0, "0px");
但是什么也没发生。有没有其他办法?
在网格中,无论你使用FlexTableFormatter()还是ColumnFormatter(),每一列都会占据它的大小。如果你想通过一些像素来限制它,你可以做到这一点。但是您不能将其设为 0。相反,您可以添加特定的列运行时间。
FlexTableFormatter()
ColumnFormatter()