我有我想要的风格CellList。 我想改变光标样式,丑陋的颜色选定的细胞。 我检查了几个问题,并在堆栈溢出讨论,但没有一次成功。 我检查了这些之一:
CellList GWT CSS样式
如何风格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(刷新按下一次又一次地)并没有什么...! 感谢您提前帮助。