Amigos, boa tarde a todos.!
Estou usando o IceFaces 1.8, até agora tudo ok e to gostando muito dele!
Mas tem algo que não consigo fazer.!
Tenho um PanelGrid com 2 colunas e para cada coluna tenho um outro PanelGrid!
Vejam exemplo simples:
<ice:panelGrid columns="2" border="1">
<ice:panelGrid style="vertical-align: top;">
<ice:outputText value="text 1" />
<ice:outputText value="text 2" />
<ice:outputText value="text 3" />
</ice:panelGrid>
<ice:panelGrid style="vertical-align: super;">
<ice:outputText value="text 1" />
<ice:outputText value="text 2" />
<ice:outputText value="text 3" />
<ice:outputText value="text 4" />
<ice:outputText value="text 5" />
<ice:outputText value="text 6" />
<ice:outputText value="text 7" />
<ice:outputText value="text 8" />
<ice:outputText value="text 9" />
<ice:outputText value="text 0" />
</ice:panelGrid>
</ice:panelGrid>
Vejam (apenas ilustrativo este exemplo) que o primeiro PanelGrid mantem os componentes alinhados verticalmente no centro.! Eu preciso que eles fiquem alinhados no TOPO.
Alinhamento padrão feito pelo Icefaces.:
text 1
text 2
text 3
text 1 text 4
text 2 text 5
text 3 text 6
text 7
text 8
text 9
text 0
Mas, imagina a primeira lista com 2 itens e a outra com 100, os 2 da primeira lista ficariam alinhados com a posição 48 da outra lista.
eu queria que ficasse assim:
text 1 text 1
text 2 text 2
text 3 text 3
text 4
text 5
text 6
text 7
text 8
text 9
text 0
Tentei usar o
<ice:panelGrid style="vertical-align: top;">
mas nada feito. Nem muda nada. Acho que não aceita isso…
Tem solução meu caso?
Se tem ou não… um abração pra comunidade.!