Hello,
Is it possible to contain a <tr:commandButton> within a <tr:table> ?
As per the documentation, <tr:table> should have a <tr:column> as its
immediate child and only certain types of components are supported as children
inside a Column. Supported components include all components with no behaviour
and most components that implement the EditableValueHolder or ActionSource
interfaces.
I tried putting a commandButton within a column like this:
<tr:table>
<tr:column>
<f:facet name="header">
<tr:outputText value="Action"/>
</f:facet>
<tr:commandButton id="commandButton1" text="Button1" />
</tr:column>
</tr:table>
...and it did not work. Please advise.
Regards,
Piyush