Pessoal, tenho procurado como fazer via wicket o equivalente a seguinte construção:
<td style "text-align: center; font-weight: bolder; border: 1px solid black;"> texto </td>
e encontrei referencias para a seguinte implementação:
...
Label valor = new Label("idDiasUteisRealizado", "texto");
valor.add(new AttributeModifier("style", new AbstractReadOnlyModel<String>() {
@Override
public String getObject() {
if (!isMostrarAcaoERealizado) {
return "text-align: center; font-weight: bolder; border: 0px solid black;";
}
return "text-align: center; font-weight: bolder; border: 1px solid black;";
};
}));
wmcTabelaTotais.add(valor);
...
e o respectivo html ficando assim:
<td width="9%" wicket:id="idDiasUteisRealizado">texto</td>
Mas não funciona. Ele simplesmente não acrescenta o atributo “Style”. Alguém tem alguma dica?
obs: O style que eu nao consigo setar no