0

我想禁用单元格表行的鼠标突出显示。此单元格表不是选择模型,因此我不希望在鼠标悬停事件时突出显示行。

4

1 回答 1

0

我们基本上是在扩展CellTable Resources包含 的CssStylesCellTable以便我们可以自定义定义自己的 css 样式。有关更多 CSS 类,请查看此链接

public interface IMyResources extends CellTable.Resources {

    interface IMyStyle extends CellTable.Style {
    }

    @Override
    @Source({ CellTable.Style.DEFAULT_CSS, "MyStyleSheet.css" })
    IMyStyle cellTableStyle();

}

MyStyleSheet.css CSS:

.hoveredRow {
  background-color: none; //or just remove this but keep the class declaration
}

JAVA //不要忘记添加资源。

CellTable<dataType> myCellTable = new CellTable<dataType>(15, GWT.create(IMYResources.class));
于 2014-01-17T17:58:44.593 回答