Hello, I have a list of tapestry submit buttons I'm trying to load inside my progressive display component, however I'm getting the following exception.
Render queue error in BeginRender[Purchase_Request:submit]: No object of type org.apache.tapestry5.services.FormSupport is available from the Environment. Is this a component limitation? code <t:ProgressiveDisplay t:id="showActionButtons" update="show"/> <t:Block t:id="actionButtons"> <t:If test="actionManager.actions"> <div class="subnav"> <ul class="nav nav-pills"> <t:Loop source="actionManager.actions" value="workflow"> ${workflow.applicationAction.name} <li class="active"> <t:Submit t:mixins="jquery/button,confirm" t:confirm="${workflow.applicationAction.confirmation}" t:message="${workflow.applicationAction.confirmationText}" title="${workflow.applicationAction.name} Action" t:context="workflow.applicationAction.id" value="prop:workflow.applicationAction.name" defer="false" class="${actionRequirement} btn" /> </li> </t:Loop> </ul> </div> </t:If> </t:Block> Block onProgressiveDisplayFromShowActionButtons() { return actionButtons; } -- View this message in context: http://tapestry.1045711.n5.nabble.com/Rendering-form-submit-button-inside-ProgressiveDisplay-component-exception-tp5715822.html Sent from the Tapestry - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org