You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Octavian Ciubotaru (JIRA)" <ji...@apache.org> on 2013/06/20 16:06:20 UTC

[jira] [Commented] (WICKET-1771) Cant close an old ModalWindow and open a new in one AjaxRequest

    [ https://issues.apache.org/jira/browse/WICKET-1771?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13689254#comment-13689254 ] 

Octavian Ciubotaru commented on WICKET-1771:
--------------------------------------------

In 6.8.0 just one methods needs to be changed:

    protected CharSequence getShowJavaScript() {
        return "window.setTimeout(function() {\n" +
        		"Wicket.Window.create(settings).show();\n" +
        		"}, 0);\n";
    }
                
> Cant close an old ModalWindow and open a new in one AjaxRequest
> ---------------------------------------------------------------
>
>                 Key: WICKET-1771
>                 URL: https://issues.apache.org/jira/browse/WICKET-1771
>             Project: Wicket
>          Issue Type: Improvement
>          Components: wicket-extensions
>         Environment: Windows XP
>            Reporter: Martin Sachs
>            Priority: Minor
>
> I have a ModalWindow for some confirmation action. After that confirmation, i want to close the window and open an other modalwindow. The ConfirmWindow can be also opened from a ModalWindow. So i need this extra ModalWindow.
> The Problem: The Close javascript uses a timeout, but the open -javascript dont.
> My fix for this solution: 
> private String getWindowOpenJavascript(){...
> postProcessSettings(buffer);
> 		buffer.append("window.current.setTimeout(function() {
> 			Wicket.Window.create(settings).show();
> 		}, 0);\n");
> 		return buffer.toString();
> ..

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira