0

我在 Zend 项目中使用 Ingot_JQuery_JqGrid。我知道如何通过双击来编辑数据,但不知道如何简单地从所选行中提取数据。

谢谢

4

1 回答 1

0

好的,所以我们对问题的解决方法是通过 ajax 请求发送参数:

function sendRowId(rowid,status) {


    var myData = "row=" + rowid;
    $.ajax({
          url: "<?php echo $this->url( array ('module' => 'gmarim', 'controller' => 'student', 'action' => 'select'), null, false, true );?>",
          data : myData,
          type: 'POST',
          success: function(d,s,x){

          },
          async: false
        }); 
}
于 2013-09-02T15:06:57.230 回答