我想从CellTable的标题中删除排序箭头。 (下面红色圆圈中的那个,来自GWT展示柜:http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable



但是我仍然想要CellTable的排序功能。

可能吗?任何的想法?

最佳答案

未经测试,可能有点破解,但是您可以尝试覆盖默认样式以返回空白图像。扩展Hilbrand's earlier solution以覆盖CellTable使用的ImageResources:

public interface TableResources extends CellTable.Resources {
    @Source("blank.jpg")
    ImageResource cellTableSortAscending();

    @Source("blank.jpg")
    ImageResource cellTableSortDescending();
 }


创建'blank.jpg'并将其放在与此接口相同的资源包中。

09-05 21:14