On Mon, 27 Aug 2012 13:56:36 -0300, George Christman <gchrist...@cardaddy.com> wrote:

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?

Form field components should be declared inside a Form component, and that's not the case in your template.


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



--
Thiago H. de Paula Figueiredo

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to