<tfoot id='J5eFU'></tfoot>
    • <bdo id='J5eFU'></bdo><ul id='J5eFU'></ul>

    <legend id='J5eFU'><style id='J5eFU'><dir id='J5eFU'><q id='J5eFU'></q></dir></style></legend>

    <i id='J5eFU'><tr id='J5eFU'><dt id='J5eFU'><q id='J5eFU'><span id='J5eFU'><b id='J5eFU'><form id='J5eFU'><ins id='J5eFU'></ins><ul id='J5eFU'></ul><sub id='J5eFU'></sub></form><legend id='J5eFU'></legend><bdo id='J5eFU'><pre id='J5eFU'><center id='J5eFU'></center></pre></bdo></b><th id='J5eFU'></th></span></q></dt></tr></i><div id='J5eFU'><tfoot id='J5eFU'></tfoot><dl id='J5eFU'><fieldset id='J5eFU'></fieldset></dl></div>

      <small id='J5eFU'></small><noframes id='J5eFU'>

        如何在 PageLoad 上打开 ModalDialog

        时间:2023-10-14
          <legend id='cKiwi'><style id='cKiwi'><dir id='cKiwi'><q id='cKiwi'></q></dir></style></legend>

          • <bdo id='cKiwi'></bdo><ul id='cKiwi'></ul>

              • <small id='cKiwi'></small><noframes id='cKiwi'>

              • <i id='cKiwi'><tr id='cKiwi'><dt id='cKiwi'><q id='cKiwi'><span id='cKiwi'><b id='cKiwi'><form id='cKiwi'><ins id='cKiwi'></ins><ul id='cKiwi'></ul><sub id='cKiwi'></sub></form><legend id='cKiwi'></legend><bdo id='cKiwi'><pre id='cKiwi'><center id='cKiwi'></center></pre></bdo></b><th id='cKiwi'></th></span></q></dt></tr></i><div id='cKiwi'><tfoot id='cKiwi'></tfoot><dl id='cKiwi'><fieldset id='cKiwi'></fieldset></dl></div>
                <tfoot id='cKiwi'></tfoot>
                    <tbody id='cKiwi'></tbody>
                  本文介绍了如何在 PageLoad 上打开 ModalDialog的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何在 PageLoad() 的构造函数中打开一个模式对话框,在没有 AjaxRequestTarget 的情况下使用 Wicket?

                  How can I open a modal dialog on PageLoad(), in the constructor of the WebPage and without the AjaxRequestTarget, with Wicket?

                  推荐答案

                  如果没有 Ajax 请求,我找不到打开它的方法,但是完全可以在页面加载时打开它,只需一个简单的行为:

                  I couldn't find a way to open it without an Ajax request, but it's perfectly possible to open it when the page is loaded, with a simple behavior:

                  HomePage.java

                  HomePage.java

                  public class HomePage extends WebPage {
                      public HomePage(PageParameters pageParameters) {
                          super(pageParameters);
                  
                          ModalWindow modal = new ModalWindow("modal");
                          modal.add(new OpenWindowOnLoadBehavior());
                          modal.setPageCreator(new ModalWindow.PageCreator() {
                              @Override
                              public Page createPage() {
                                  return new RedirectPage("http://www.google.com");
                              }
                          });
                          add(modal);
                      }
                  }
                  

                  OpenWindowOnLoadBehavior.java

                  OpenWindowOnLoadBehavior.java

                  public class OpenWindowOnLoadBehavior extends AbstractDefaultAjaxBehavior {
                      @Override
                      protected void respond(AjaxRequestTarget target) {
                          ModalWindow window = (ModalWindow) getComponent();
                          window.show(target);
                      }
                      @Override
                      public void renderHead(IHeaderResponse response) {
                          response.renderOnLoadJavascript(getCallbackScript().toString());
                      }
                  }
                  

                  主页.html

                  <html xmlns:wicket="http://wicket.apache.org">
                  <body>
                    <div wicket:id="modal"></div>
                  </body>
                  </html>
                  

                  这篇关于如何在 PageLoad 上打开 ModalDialog的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:使用 SWT 显示父模式对话框 下一篇:如何在 Selenium 中的 HTML5 Canvas 上执行鼠标滚轮滚动?

                  相关文章

                  <legend id='wDoFG'><style id='wDoFG'><dir id='wDoFG'><q id='wDoFG'></q></dir></style></legend>

                      <tfoot id='wDoFG'></tfoot>
                    1. <i id='wDoFG'><tr id='wDoFG'><dt id='wDoFG'><q id='wDoFG'><span id='wDoFG'><b id='wDoFG'><form id='wDoFG'><ins id='wDoFG'></ins><ul id='wDoFG'></ul><sub id='wDoFG'></sub></form><legend id='wDoFG'></legend><bdo id='wDoFG'><pre id='wDoFG'><center id='wDoFG'></center></pre></bdo></b><th id='wDoFG'></th></span></q></dt></tr></i><div id='wDoFG'><tfoot id='wDoFG'></tfoot><dl id='wDoFG'><fieldset id='wDoFG'></fieldset></dl></div>

                        <bdo id='wDoFG'></bdo><ul id='wDoFG'></ul>
                    2. <small id='wDoFG'></small><noframes id='wDoFG'>