0

在我的 GWT 应用程序中,我有两个 CellList。每个都有不同的风格,如下所示:

 public interface MyResources extends Resources
 {
    /**
     * The styles used in this widget.
     */
    @Override
    @Source( "com/example/CellList.css" )
    Style cellListStyle();
 }
 MyResources CELLLIST_RESOURCES = GWT.create( MyResources.class );

 ......
 mylist=new CellList<MyProxy>( myCell, CELLLIST_RESOURCES );

两个 CellLists 都有不同的 css 文件。但是当我加载时,我发现两个列表的样式是相同的。这很奇怪,有什么想法吗?

4

1 回答 1

0

刚发现这个问题 6144,解决方法很简单,就是各自使用不同的接口名,即

interface TableResources extends CellTable.Resources
{
  @Source({"myCellTable.css"})
  TableStyle cellTableStyle();

}
于 2013-04-27T07:17:31.253 回答