在我的GWT应用程序中,我有两个CellLists。每个都有不同的风格,如下所示:
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文件。但是当我发现加载时,两个列表的样式都是一样的。这很奇怪,有什么想法吗?
答案 0 :(得分:0)
刚刚找到这个issue 6144,解决方案很简单,只需使用不同的接口名称,即
interface TableResources extends CellTable.Resources
{
@Source({"myCellTable.css"})
TableStyle cellTableStyle();
}