GWT CellTable用のカスタムセルレンダラーを作成しようとしています。私は、セルの内部にCSSスタイルを設定しようとしていますが、何らかの理由でレンダリングされません。私はこのコードは、このHTMLフラグメントを生成GWTスタイルがAbstractCellで機能しない
Column<MyObject, String> userNameSelectedColumn = new Column<MyObject, String>(new MyStringCell()) {
@Override
public String getValue(MyObject myObject) {
return myObject.getName();
}
};
vendorPermissions.addColumn(userNameSelectedColumn, "Objects w/ checkboxes");
レンダラを呼んでいるところ
は、ここで(空のスタイルに注目してください)私のカスタムセルレンダラー
static class MyStringCell extends AbstractCell<String> implements Cell<String> {
interface UncheckedStringTemplate extends SafeHtmlTemplates {
@SafeHtmlTemplates.Template("<div style=\"{0}\"><input type=\"checkbox\"/>{1}</div>")
SafeHtml cell(SafeStyles styles, SafeHtml vendorName);
}
private static UncheckedStringTemplate uncheckedStringTemplate = GWT.create(UncheckedStringTemplate.class);
@Override
public void render(com.google.gwt.cell.client.Cell.Context context, String value, SafeHtmlBuilder sb) {
if (value == null) {
return;
}
SafeHtml vendorName = SafeHtmlUtils.fromString(value);
SafeStyles styles = SafeStylesUtils.fromTrustedString("noaccess;");
SafeHtml rendered = uncheckedStringTemplate.cell(styles, vendorName);
sb.append(rendered);
}
}
だし、ここにある
<div style=""><input type="checkbox">Vendor 1</div>
すべてこれは密接にthe GWT example for Creating Custom Cellsの後に続きます。 sが間違っているか、それともバグか。
ただし、レンダリングされたStringを調べるためにGWTデバッガを使用していますが、その時点でスタイル情報が入っているようです.GWTパイプラインのさらに下のところで削除されています私のブラウザ。
アイデア?