php – JQGrid:通过post在JQGrid中获取多个选中的行值

前端之家收集整理的这篇文章主要介绍了php – JQGrid:通过post在JQGrid中获取多个选中的行值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的PHP文件中有一个JQGrid,我放在一个表单中.在提交表单时,我只想要来自JQGrid的检查值.
<script type="text/javascript">
    $(function() {
        $("#list1").jqGrid({
            url:'revMemberJson.PHP',datatype: 'json',mtype: 'GET',loadonce: true,// jsonReader: { repeatitems: false },colNames:['Name','Mobile'],colModel :[ 
                {name:'name',index:'name',width: 100,searchoptions: { sopt: ['eq','ne','cn']}},{name:'mobile',index:'mobile',search: false,width: 120}
            ],pager: '#pager',rowNum: 5,rowList:[5,20,30],rownumbers: true,multiselect:true,sortname: 'id',sortorder: 'desc',viewrecords: true,height: 'auto',width: 420,shrinkToFit: false,gridview: true,caption: 'Members'
        });
        jQuery("#list1").jqGrid('navGrid','#pager',{edit:false,add:false,del:false});

    });

    var myGrid = $('#list1'),selRowId = myGrid.jqGrid ('getGridParam','selrow'),celValue = myGrid.jqGrid ('getCell',selRowId,'mobile');

</script>

我使用以下代码获取检查值,但所有内容都是用java脚本编写的.但我必须获得更新数据库的值.所以我需要通过邮寄获得价值.

请提供方法..

你应该用
var selRowIds = myGrid.jqGrid ('getGridParam','selarrrow');

insteda

var selRowId = myGrid.jqGrid ('getGridParam','selrow');

获取包含所选行的ID的数组.您可以使用JSON.stringify(selRowIds)或selRowIds.join(‘,’)以您可以轻松发送到服务器的形式转换数组.

我想你可以在the answer找到一些额外的信息(见the demo).

原文链接:https://www.f2er.com/php/135349.html

猜你在找的PHP相关文章