1

スタイリングしたいCellListがあります。選択したセルの醜い色であるカーソルのスタイルを変更したい。スタックオーバーフローに関するいくつかの質問とディスカッションを確認しましたが、どれも機能しませんでした。私はこれらをチェックしました:

CellListGWTCSSスタイル

gwt 2.1 CellTablesヘッダーのスタイルを設定するにはどうすればよいですか?

彼女は私のコードです:

public interface CellListResource extends CellList.Resources {


  public static CellListResource INSTANCE = GWT.create(CellListResource.class);

  interface CellListStyle extends CellList.Style {

  }

  @Source({CellList.Style.DEFAULT_CSS, "CellTableStyle.css"})
  CellListStyle style();
}

 public SearchViewImpl() {

    CompanyCell companyCell = new CompanyCell();
//it doesn't work :S 
    companiesList = new CellList<Company>(companyCell, CellListResource.INSTANCE);

    rootElement = ourUiBinder.createAndBindUi(this);

    loadingImage.setVisible(false);
  }

私は何かが足りないのですか?ブラウザのキャッシュをクリアし、サーバーを再起動しました。F5F5 F5 .... F5(何度も更新を押しました)そして何もありません...!よろしくお願いします。

4

2 に答える 2

3

CSSを挿入する以外に、style()だけでなくCellListStyleスタイルのcellListStyle()を呼び出すことが重要です。

public interface CellListResource extends CellList.Resources {
  public static CellListResource INSTANCE = GWT.create(CellListResource.class);
  interface CellListStyle extends CellList.Style {}

  @Override
  @Source("cellListStyle.css")
  CellListStyle cellListStyle();
}

そして、あなたはします

CellListResource.INSTANCE.cellListStyle().ensureInjected();
companiesList = new CellList<Company>(companyCell, CellListResource.INSTANCE);
于 2013-06-11T21:44:43.250 に答える
2

必ずcssリソースを注入してください。

CellTableResources.INSTANCE.cellTableStyle().ensureInjected();
myCellTable = new CellTable<T>(Integer.MAX_VALUE,CellTableResources.INSTANCE);

次のリンクをたどることができます

ハイライトの上でマウスをどのように変更しますか?

于 2012-11-27T04:47:24.720 に答える