如何风格GWT CellList?(How to style GWT CellList?)

2019-09-20 08:27发布

我有我想要的风格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(刷新按下一次又一次地)并没有什么...! 感谢您提前帮助。

Answer 1:

请确保你注入的CSS资源。

CellTableResources.INSTANCE.cellTableStyle().ensureInjected();
myCellTable = new CellTable<T>(Integer.MAX_VALUE,CellTableResources.INSTANCE);

你可以按照下面的链接

你如何改变鼠标高亮?



Answer 2:

除了注入的CSS它,你叫CellListStyle风格cellListStyle()不只是风格()是非常重要的:

public interface CellListResource extends CellList.Resources {
  public static CellListResource INSTANCE = GWT.create(CellListResource.class);
  interface CellListStyle extends CellList.Style {}

  @Override
  @Source("cellListStyle.css")
  CellListStyle cellListStyle();
}

然后你做

CellListResource.INSTANCE.cellListStyle().ensureInjected();
companiesList = new CellList<Company>(companyCell, CellListResource.INSTANCE);


文章来源: How to style GWT CellList?
标签: gwt gwt2 gwt-2.4