我有一个要设置样式的 CellList。我想更改光标样式,选定单元格的丑陋颜色。我检查了几个关于堆栈溢出的问题和讨论,但没有一个起作用。我检查了这些:
如何设置 gwt 2.1 CellTables 标题的样式?
她是我的代码:
public interface CellListResource extends CellList.Resources {
public static CellListResource INSTANCE = GWT.create(CellListResource.class);
interface CellListStyle extends CellList.Style {
}
@Source({CellList.Style.DEFAULT_CSS, "CellTableStyle.css"})
CellListStyle style();
}
public SearchViewImpl() {
CompanyCell companyCell = new CompanyCell();
//it doesn't work :S
companiesList = new CellList<Company>(companyCell, CellListResource.INSTANCE);
rootElement = ourUiBinder.createAndBindUi(this);
loadingImage.setVisible(false);
}
我错过了什么吗?我清除了浏览器缓存,重新启动服务器,F5 F5 F5 .... F5(一次又一次按下刷新),什么都没有...!提前感谢您的帮助。