0

当我双击但没有成功时,我一直试图从 jqGrid 检索数据。我能够获得行 ID。请任何人都可以帮我检查此代码并让我知道出了什么问题。

$(function(){
              $("#itemlist").jqGrid({
                    url:urld,
                    datatype: 'json',
                    mtype: 'POST',
                    colNames:['Subscriber Id','Subscriber Name','Contact Person','Contact Email','Telephone'],
                    colModel :[ 
                      {name:'id', index:'id', width:100,sortable:true}, 
                      {name:'subscribername', index:'subscribername', width:300,sortable:true},
                      {name:'contactperson', index:'contactperson', width:200,sortable:true},
                      {name:'contactemail', index:'contactemail', width:200,sortable:true},
                      {name:'telephone', index:'telephone', width:100,sortable:true}
                    ],
                    pager: '#pager',
                    pgbuttons:true,
                    rowList:[10,20,30],
                    sortorder: 'desc',
                    viewrecords: true,
                    gridview: true,
                    loadonce: true,
                    height: 'auto',
                    altRows:true,
                    altclass: 'oddRow',
                    caption: 'Subscriber',
                    ondblClickRow: function(id,iRow,icCol,e)
                    {
                        alert(iRow);
                         var rowData = jQuery("#itemlist").jqGrid('getRowData',iRow);
                        var subName = rowData['subscribername');
alert(subName);

                     }
                  }); 
            });

警报显示 iRow 但不显示 subName。

4

1 回答 1

1

尝试:

ondblClickRow: function(id,iRow,icCol,e)
                    {
                        alert(iRow);
                         var rowData = $(this).jqGrid('getRowData',id);
...

您正在使用iRow而不是“id”的rowID。为清楚起见(尽管这并不重要),我建议您将 ondblClickRow 标记为:

ondblClickRow: function (rowid, iRow, iCol, e) {
于 2013-03-19T14:02:03.887 回答