Is it possible to skin tr:table?
When a tr:table is rendered, should it add the class="af_table_content"? I
expected that class to be added to the component - but it is not added.
I am trying to add "width: 100%" to some tables (and not others).
Thoughts?
I am using trinidad 1.0.0.
I have the following snippet:
<tr:panelGroupLayout layout="vertical">
<tr:panelHorizontalLayout>
<f:facet name="separator"><tr:spacer width="8px"/></f:facet>
<tr:panelHeader text="Credit Cards"/>
<tr:panelButtonBar>
<tr:commandLink action="#{editor.new}" value="Add">
</tr:panelButtonBar>
</tr:panelHorizontalLayout>
<tr:table var="pm"
value="#{cards}"
id="tbl_paymethod">
<tr:column headerText="Card Name">
<tr:outputText value="#{pm.name}"/>
</tr:column>
</tr:table>
</tr:panelGroupLayout>
Chris....