在我的 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 文件。但是当我加载时,我发现两个列表的样式是相同的。这很奇怪,有什么想法吗?