如何在jqgrid中编辑外键?

时间:2015-09-14 10:29:15

标签: javascript asp.net-mvc-4 jqgrid mvcjqgrid

我在JqGrid中有外键并在网格中显示外键的名称。

当我想编辑时,方法不发送外键值和外键值为空:

public ActionResult EditState(tblState state)
    {
        UserRepository user = new UserRepository();
        state.UserIDChange_FK = Convert.ToInt64(user.FindUserID(User.Identity.Name));
        state.StateDateChange = (DateTime.Now);
        state.StateDateCreate = DateTimeConvertor.ToDateTime(state.StateDateCreate.ToString());
        if (ModelState.IsValid)
        {
            StateRepository mr = new StateRepository();
            if (mr.Update(state, true))
            {
                return MessageBox.Show("success", MessageType.Success, modal: true, layout: MessageAlignment.Center);
            }
            else
            {
                return MessageBox.Show("don not success", MessageType.Error, modal: true, layout: MessageAlignment.Center);
            }
        }
        return Json(true);
    }

jqgrid的脚本:

<script type="text/javascript">
    $(document).ready(function () {
        $('#list').jqGrid({
            caption: "State Info",
            url: '@Url.Action("GetState", "LocationGrid")',
            editurl: '@Url.Action("EditState", "LocationGrid")',
            datatype: 'json',
            jsonReader: {
                root: "Rows",
                page: "Page",
                total: "Total",
                records: "Records",
                repeatitems: true,
                id: "StateID",
                cell: "RowCells"
            },
            mtype: 'POST',
            colNames: ['ID','state','UserIDCreate_FK','UserIDChange_FK','StateDateCreate','StateDateChange', ''],
            colModel: [
                {
                    name: 'StateID', index: 'StateID',
                    editable: false, hidden: true, key: true
                },
                {
                    name: 'StateName', index: 'StateName', align: 'center', width: 120,
                    search: true, stype: 'text', searchoptions: { sopt: searchOptions },
                    editable: true, edittype: 'text',
                    editoptions: {
                        maxlength: 40
                    },
                    editrules: {
                        required: true
                    }
                },
                {
                    name: 'UserIDCreate_FK', index: 'UserIDCreate_FK', align: 'center', width: 80,
                    search: true, stype: 'text', searchoptions: { sopt: searchOptions },
                    editable: true, editoptions: { readonly: 'readonly' }
                },
            {
                name: 'UserIDChange_FK', index: 'UserIDChange_FK', align: 'center', width: 80,
                search: true, stype: 'text', searchoptions: { sopt: searchOptions },
                editable: false, edittype: 'text',
                editoptions: {
                    maxlength: 40
                },
                editrules: {
                    required: true
                }
            }
            ,
            {
                name: 'StateDateCreate', index: 'StateDateCreate', align: 'center', width: 135,
                search: true, stype: 'text', searchoptions: { sopt: searchOptions },
                editable: true, editoptions: { readonly: 'readonly' }
            },
            {
                name: 'StateDateChange', index: 'StateDateChange', align: 'center', width: 135,
                search: true, stype: 'text', searchoptions: { sopt: searchOptions },
                editable: false, edittype: 'text',
                editoptions: {
                    maxlength: 40
                },
                editrules: {
                    required: true
                }
            },
            {
                name: 'myac', width: 80, fixed: true, sortable: false, search: false,
                resize: false, formatter: 'actions',
                formatoptions: {
                    keys: true
                }
            }
            ],
            rowNum: 10,
            rowList: [10, 20, 50, 100],
            sortname: 'StateID',
            sortorder: 'desc',
            viewrecords: true,
            altRows: true,
            shrinkToFit: false,
            width: '900',
            height: 'auto',
            hidegrid: false,
            direction: "rtl",
            gridview: true,
            rownumbers: true,
            footerrow: true,
            loadComplete: function () {
                $("tr.jqgrow:odd").css("background", "#E0E0E0");
            },
            loadError: function (xhr, st, err) {
                jQuery("#rsperror").html("Type: " + st + "; Response: " + xhr.status + " " + xhr.statusText);
            }
        })
        ;
    });

Bellow图片显示UserIDCreate_FK为null,但在网格中,这个feild有价值。

enter image description here

0 个答案:

没有答案