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

I am trying to use a4j:status along with richpaneltab. I have 3 tabs. When I user a4j:status in only one of the tabs then it is working fine. However if I add it for another tab then it throws a duplicate status id execption for "status". I tried adding an id for a4j:status and also added forceid=true. But now, the a4j:status message and image is not getting displayed. I aslo tried adding a4g:region around the below listed code for each tab. But again,a4j:status message and image is not getting displayed.

    <div align="center">
            <rich:modalPanel id="panel2" autosized="false" keepVisualState="false" style="text-align:center" width="315" height="100" >
                <h:panelGrid columns="1">
                    <h:column>
                        <h:outputText value="Processing Request...." style="color:green;font-size:10px;font-weight:bold;"/>
                    </h:column>
                    <h:column>
                        <h:graphicImage value="/images/ajax/ajax-loader.gif" />
                    </h:column> 
                </h:panelGrid> 
            </rich:modalPanel>
            </div>

            <div align="center">

                <a4j:status onstart="javascript:Richfaces.showModalPanel('panel2');" onstop="#{rich:component('panel2')}.hide();" />

            </div>       

Thanks

share|improve this question
what do you mean with "if I add it for another tab"? are you putting a a4j:status for each tab? It will be heplful if you post the whole code, including the rich:tabPanel code – davidmontoyago Dec 7 '11 at 18:13

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.