0

我有一个dojox.grid.DataGrid. 在此显示一组值以及填充的最后 2 列,这些列是根据使用属性buttons从数据库中检索到的数据动态创建的。现在我的网格很好。按钮也很好。我现在需要做的是,当我单击该按钮单击事件上的特定按钮时,我将其重定向到一个新 URL,其中特定值(A)作为该 URL 中的查询字符串参数传递。而且我不希望我的页面被刷新。就像单击按钮时,它会在其他 JSP 页面上执行操作并显示消息。formattergridStruturealert("Action is being performed")

我为我的数据网格编码的java脚本代码::

<script type="text/javascript">
function getInfoFromServer(){
        $.get("http://localhost:8080/2_8_2012/jsp/GetJson.jsp?random=" + new Date().getTime(), function (result) {
        success:postToPage(result),
        alert('Load was performed.');
            },"json");
    }


    function postToPage(data){
    alert(data);    
    var storedata = {
        identifier:"ActID",
        items: data
        };
    alert(storedata);

    var store1 = new dojo.data.ItemFileWriteStore({data: storedata}) ;
    var gridStructure =[[

                          { field: "ActID",
                                name: "Activity ID",

                                classes:"firstName"
                          },
                          {
                              field: "Assigned To",
                              name: "Assigned To",

                              classes: "firstName"
                          },
                          { field: "Activity Type",
                                name: "Activity Type",

                                classes:"firstName"
                          },
                          {
                              field: "Status",
                              name: "Status",

                              classes: "firstName"
                          },
                          {
                              field: "Assigned Date",
                              name: "Assigned Date",

                              classes: "firstName"
                          },
                          {
                              field: "Assigned Time",
                              name: "Assigned Time",

                              classes: "firstName"
                          },
                          {
                              field: "Email",
                              name: "Send Mail",
                              formatter: sendmail,
                              classes: "firstName"

                          },
                          {
                              field: "ActID",
                              name: "Delete",
                              formatter: deleteact,
                                classes: "firstName"
                          }

                    ]
              ];
    //var grid = dijit.byId("gridDiv");
    //grid.setStore(store1);

    var grid = new dojox.grid.DataGrid({

        store: store1,
        structure: gridStructure,
        rowSelector: '30px',
        selectionMode: "single",
        autoHeight:true,
        columnReordering:true

        },'gridDiv');

    grid.startup();
    dojo.connect(grid, "onRowClick", grid, function(){
                var items = grid.selection.getSelected();
                dojo.forEach(items, function(item){
                    var v = grid.store.getValue(item, "ActID");
                    getdetailsfordialog(v);

                    function showDialog() {
                        dojo.require('dijit.Tooltip');
                        dijit.byId("terms").show();
                    }

                    showDialog();
                    }, grid);

            });
}

function sendmail(item) {
    alert(item);
      return "<button onclick=http://localhost:8080/2_8_2012/jsp/SendMailReminder.jsp?Send Mail="+item+"'\">Send Mail</button>";

    }
function deleteact(item) {
    alert(item);
      return "<button onclick=http://localhost:8080/2_8_2012/jsp/DeleteActivity.jsp?Activity ID="+item+"'\">Delete</button>";
    }
</script>

我正在使用$.get调用获取网格数据。在上面的代码字段中EmailActID实际上是在每次运行时创建的按钮,sendmail并且deleteact正在被调用formatter。显示网格。两个函数中的值也alert(item)都出现了,即存​​在各自的值。就像alert(item)Delete我得到ActID和得到现在我想要alert(item)在我的页面上的特定(列中的按钮)sendmail"shan@gmail.com"button clickSendmail

http://localhost:8080/2_8_2012/jsp/SendMailReminder.jsp?Send Mail="+item+"'

button clickDelete此页面的列中

http://localhost:8080/2_8_2012/jsp/DeleteActivity.jsp?Activity ID="+item+"'\"

打开从数据库中检索到的项目的值。我还应用了一个rowClick事件,这也导致了问题,因为当我单击 u 按钮时,我的Rowclick事件触发而不是按钮单击事件。这该怎么做。我想将点击事件应用于网格上的每个按钮。但是有ID我不知道。请帮我解决这个问题。谢谢..

4

1 回答 1

1

我认为,您需要调整服务器端代码以处理发送邮件的 ajax 发布请求,并dojo.xhrPost在用户单击按钮时使用方法。您的 JS 代码可能如下所示:

  function sendMailHandler(evt, item) {
    dojo.xhrPost({
      url: "/2_8_2012/jsp/SendMailReminder.jsp",
      content: {
        'SendMail': item
      },
      error: function() {
        alert("Sent failure");
      },
      load: function(result) {
        alert("Email sent with result: " + result);
      }
    });

    dojo.stopEvent(evt);
  }

  function sendmail(item) {
    return "<button onclick='sendMailHandler(arguments[0], \"" + item +  "\")'>Send Mail</button>";
  }

请注意,dojo.stopEvent(evt);insendMailHandler用于停止事件冒泡并防止RowClick引发。

dojo.xhrGet有类似的语法来执行 ajax GET 请求,您可以使用它来代替 jQuery 的$.get. 您也可以在我的示例中使用dojo.xhrGet而不是dojo.xhrPost,因为它有可能无需调整即可与您的后端一起使用,但POST(或 ajax 表单提交)在语义上会更正确。

关于“尝试注册 id="something",您应该调整您的代码以避免 ID 重复。或者显示您的代码导致错误。

于 2012-04-23T07:25:45.547 回答