1

我有一些使用 jqgrid 作为 jquery 框架的问题。

就我而言,我有一些表是 CRUD 函数,它连接到一个表,比如说部门

在这个表中有两个id:idms_department,department(name)。idms_department 是自增列。

这是我的 jqgrid 语法

    $(document).ready(function() {
            //alert("start");
            jQuery("#departments").jqGrid({
                mtype:'GET',
                url:'functions/get_dept.php',
                editurl:'functions/edit_dept.php',
                datatype: "JSON",
                colNames:['Department ID','Department'],
                colModel:[
                    {name:'idms_department',index:'idms_department', width:150, editable:false, key:true},
                    {name:'department',index:'department', width:800,editable:true}     
                ],
                loadComplete: function () {
                alert("OK");
                },    
                loadError: function (jqXHR, textStatus, errorThrown) {
                    alert('HTTP status code: ' + jqXHR.status + '\n' +
                          'textStatus: ' + textStatus + '\n' +
                          'errorThrown: ' + errorThrown);
                    alert('HTTP message body (jqXHR.responseText): ' + '\n' + jqXHR.responseText);
                },
                rowNum:10,
                rowList:[5,10,15],
                pager: '#pager-departments',
                sortname: 'idms_department',
                viewrecords: true,
                jsonReader: {repeatitems: true, idms_department: "idms_department" },
                sortorder: "asc",
                caption:"MSC Departments"
            });
            jQuery("#departments").jqGrid('navGrid','#pager-departments',{edit:true,add:true,del:true},{closeAfterEdit:true},{closeAfterAdd:true},{},{closeAfterSearch:true},{});
            jQuery("#departments").jqGrid('gridResize',{minWidth:350,maxWidth:850,minHeight:80, maxHeight:350});
            //alert("end");
            //start navigation system
            $('#navigation-bar').collapsible({
                effect: 'none',
        initialCollapse: true
    });
            //end navigation system 
        });

我可以使用 jqgrid 中的添加对话框添加新数据,但是当我想编辑表单时,它不可编辑。

问题是我认为的 id。之前,idms_department 的可编辑设置为可编辑:true,工作正常,但是当我将其设为可编辑时:false,因为用户无法自己添加新 id,所以我将其设为可编辑:false,并且该行是从对话框中消失了。

我从我的萤火虫那里得到了响应,它表明该函数正在发送正确的数据,但是数据没有改变。

编辑php的功能在这里:

  if($oper == 'edit'){
   $deptid = $_POST['idms_department'];
   echo $deptid;
   $deptnm = $_POST['department'];
   $upt = "UPDATE ms_department SET idms_department = '$deptid', department = '$deptnm' WHERE idms_department = '$deptid'";
if(mysql_query($upt)){
    "Edited Successfully";
} else {
    die("Error Edit : " .mysql_error());
}
   mysql_close();
}

有什么不对的吗?

4

1 回答 1

0

jaGrid 发送 rowid as id,但你使用

$deptid = $_POST['idms_department'];

后来WHERE idms_department = '$deptid'"UPDATE. 您必须将上述语句更改为

$deptid = $_POST['id'];

或使用prmNames: {id: "idms_department"}jqGrid 选项"id"将编辑期间发送的变量重命名为"idms_department".

于 2013-07-11T12:04:14.487 回答