Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given the following:

<composite:interface>
    <composite:attribute name="value" type="java.lang.String" />
    <composite:attribute name="action" method-signature="void action()" />
</composite:interface>

<composite:implementation>
    <s:div id="input" styleClass="#{invalid? 'error' : ''}">
        <s:validateAll>
            <h:inputText value="#{cc.attrs.value}" />
            <a4j:commandButton value="Save" action="#{cc.attrs.action}" render="input" />
        </s:validateAll>
    </s:div>
</composition:implementation>

Is there some built-in 'invalid' parameter that tells you whether it passed validation? I'm using jsf 2, seam 2.3, and richfaces 4.2

In older Seam, you could use s:decorate templating to get to the built-in 'invalid' param.

Thanks!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.