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

Rich tab panel has a server switch mode, when using this mode what is goings on ,that is if i put a form in each tab i expect only this form posted and no action called .But action="#{licenseIMC.downloadRequest}" called .And what will happen if i put all tab panel inside a single form.

<rich:tab id="updateLicensesTab" label="Update licences">
                    <h:form id="updateLicensesForm">              


                                <h:outputText value="Request file" />
                                <a4j:htmlCommandLink id="request"
                                                     action="#{licenseIMC.downloadRequest}"
                                                     value="Generate License Request"
                                                     title="Generate License Request" />
share|improve this question
What do you mean with "only this form posted and no action called"? What exactly happens if you click the link? Does it not submit the form? – morja May 23 '11 at 11:46

2 Answers

The switch mode only has an effect on whats happens if you switch from one tab to another. The server mode means that it will reload the tab (and page) everytime you switch to it. The ajax mode means it will reload the tab but not the page. And the client mode means it will not reload data from the server. The server and ajax mode only make sense if your underlying data might have changed and you want to reflect this changes when the tab is switched.

If you put all tabs in one form all tabs will be submitted if you do a form submit (e.g. execute the htmlCommandLink).

share|improve this answer
i want to know if a tabpanel with switch type server switched and form containg this tab posted to server why method #{foo.dosomething} called like a click it .I want only values in the submited form update data model no button,commandlink,... actions fired. – ayengin May 25 '11 at 16:17

In response to your question and your comment on morja's ans: The individual actions of command buttons and links inside the tabs will not be fired. However, the action that is specified in the tab tag will be fired.

In your example htmlCommandLink will not be fired and downloadRequest() not called, but if you were to have:

<rich:tab id="updateLicensesTab" label="Update licences" action="#{licenseIMC.tabChange}">
                    <h:form id="updateLicensesForm">      

then the tabChange function would be called.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.