将内联JqGrid下拉值转换为MVC视图模型

时间:2015-11-02 06:38:58

标签: jquery asp.net-mvc asp.net-mvc-4 jqgrid inline-editing

my previous question的引用中,我在内联JqGrid中添加了一个drop select。我已将下拉列表配置如下

$("#tbl-items").CreateGrid({
url: // MVC controller action url,
colNames: ['Item ID', 'Item Name', 'Gender',....],
colModel: [
{ name: 'ItemID', index: 'ItemID', sorttype: 'integer', hidden: true, key: true },
{name: 'ItemName', index: 'ItemName', sortable: true, autowidth: true, shrinkToFit: true, searchoptions: { sopt: ['cn'] }, editable: true},
 {name: 'Gender', index: 'Gender', sortable: true, autowidth: true, shrinkToFit: true, searchoptions: { sopt: ['cn'] }, editable: true,
                   edittype: "select",
                   formatter: 'select',
                   editoptions: {
                       dataUrl: // Url to get the list of Gender Item from the MVC controller,
                       buildSelect:
                            function (response) {
                                var data = JSON.parse(response)
                                    s = "<select>"; s += '<option value="0">--Select Gender--</option>';
                                    $.each(data, function (i, item) {

                                        s += '<option value="' + item.GenderTypeID + '">' + item.GenderTypeName + '</option>';
                                })
                                s += '</select>';
                                return s;
                            }
                   }                  
               },


});

现在我尝试将所选值发布到我的视图模型中。我的观点模型如下。

 public class CreateItemViewModel
 {
   public int ItemID { get; set; }
   public string ItemName { get; set; }
   public int GenderTypeId { get; set; }
 }

我想发布到我的行动

[HttpPost]
public ActionResult Create(CreateItemViewModel itemModel)
{
   // Code
}

但是我的运气不好,价值没有被分配到 GenderTypeId 属性。任何人都可以识别出错的地方。

提前致谢

1 个答案:

答案 0 :(得分:0)

好吧,你的列名应该是GenderTypeId。