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中的ActionCell自动生成的,我想改变生成按钮的宽高,有什么方法吗? 我检查了 ActionCell 没有任何 addStyleName 允许我更改按钮的 css。
你有几个选择。
如果您在 CellTable 或 DataGrid 中使用此单元格,请在使用 ActionCell 构建的列上设置样式:
myColumn.setCellStyleNames("myButtonStyle");
您还可以在包含 ActionCell 的父元素上设置此样式:
.myButtonStyle button { background: red; }
或者,如果需要,甚至更具体:
.myButtonStyle td button { background: red; }