i have following scenario first i need to send request to back end,that will return a URL..i need to open the URL in the popup.. i am confused for this

i have tried opening popup both using the prime-faces and web flow but i don't have clearly how to open popup using new url each time

we are using JSF, prime faces and spring webflow

link|improve this question

68% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Use JavaScript's window.open function.

E.g.

<h:form>
    <h:commandButton value="Submit" action="#{bean.submit}">
        <f:ajax render="popup" />
    </h:commandButton>

    <h:panelGroup id="popup">
        <ui:fragment rendered="#{not empty bean.url}">
            <script>window.open('#{bean.url}');</script>
        </ui:fragment>
    </h:panelGroup>
</h:form>

with

private String url;

public void submit() {
    this.url = sendRequestToServiceAndRetrieveURL();
}

// ...
link|improve this answer
thanks.. should i call getURL function from command button independently – Vish Aug 26 '11 at 12:19
Uh, no. Just let the command button set the retrieved URL as a url property and then return or ajax-update the page. I updated the answer. – BalusC Aug 26 '11 at 12:22
thanks i will try and ask for help if needed :P – Vish Aug 26 '11 at 12:24
i am facing tow more problem..one is i want to call an action when i close this popup secondly i need to change width and height of this popup..can u help me to do that – Vish Aug 30 '11 at 12:54
That are different questions. Press Ask Question button on right top to post them. – BalusC Aug 30 '11 at 12:56
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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