|
List Info
Thread: AssertionError including commandLink within panelLabelAndMessage
|
|
| AssertionError including commandLink
within panelLabelAndMessage |

|
2007-09-24 11:22:10 |
|
I'm using JSF 1.2, Facelets 1.1.12, Trinidad 1.2.1 and am trying to include a commandLink within a panelLabelAndMessage component, but am getting an AssertionError. Is this a bug or am I doing something wrong?
The JSF snippet in question is:
<tr:panelLabelAndMessage label="Supplier"> <tr:selectOneChoice simple="true" id="supplier" value="#{pageFlowScope.expenditureBean.supplier
}" showRequired="true" requiredMessageDetail="Supplier must be specified." disabled="#{pageFlowScope.expenditureBean.fieldReadOnly
}"> <f:selectItems value="#{listOfValuesFactoryBean.supplierLOVBean.selectItems}"/> </tr:selectOneChoice> <ui:include src="/home/expenditure/supplierLink.xhtml" />
<tr:commandLink action="dialog:supplierDialog" useWindow="false" partialSubmit="false" windowHeight="300" windowWidth="400"
id="createSupplierCommand" immediate="true" shortDesc="Create a new supplier record."> <tr:image source="/skins/tn/images/ico_new.gif" />
<tr:setActionListener from="#{generalActionsBean.newSupplierBean}" to="#{pageFlowScope.supplierBean}" /> <tr:setActionListener from="#{'create'}"
| |