0

我在对话框窗口中有带有dojo提交按钮(ajax调用)的struts2。我想在提交按钮后保留弹出窗口。但它不保留相同的表单。

<div id="dialog-form">
<form action="finder" method="post" id="form1">
<textarea id="products" name="productNo"><s:property value='productNo'/>
        </textarea>
  <sx:submit targets="dialog-form"></sx:submit> 

父页面表单:

<div id="form_parent">
 <form action="search" method="post">
 -------------------------
 --------------------------
 </form>
 </div>

searchaction.java

public String finder()
{
 ---------------------
 return "search" //which is going to return parent page.
 }

当我提交页面时,它会关闭弹出窗口并打开父页面。如何保留弹出窗口?

4

1 回答 1

0

我不知道 struts2,但按照http://struts.apache.org/release/2.3.x/docs/dojo-submit.html上的文档,我会尝试类似:

<form id="form1" action="search">
    ---------
    ---------
    <sx:submit beforeNotifyTopics="/before" />
</form>

<script type="text/javascript">
    dojo.event.topic.subscribe("/before", function(event, widget){
        dojo.stopEvent(event);
        dojo.xhrPost({
            form : dojo.byId("form1")
        });
    });
</script>
于 2013-06-12T16:06:33.143 回答