スタイリングしたいCellListがあります。選択したセルの醜い色であるカーソルのスタイルを変更したい。スタックオーバーフローに関するいくつかの質問とディスカッションを確認しましたが、どれも機能しませんでした。私はこれらをチェックしました:
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(何度も更新を押しました)そして何もありません...!よろしくお願いします。