1

我想使用 Telerik mvc 网格(批量编辑)检查用户名是否已存在于数据库中。但问题是为了验证它,我需要将 applconst_id 作为参数传递给 CheckDuplicateType 函数。但它总是返回“未定义”,我不知道如何获得正确的值。

这是我的模型课:

public class masterTypeCont
{
    [Key]
    public Int32 applconst_id { get; set; }

    [Required(ErrorMessage = "This field needs a value!")]
    [Remote("CheckDuplicateType",
        "Type",
        AdditionalFields = "applconst_id",
        ErrorMessage = "Code already exists.")]
    public String note1 { get; set; }
}

这是我的控制器:

[HttpGet]
    public virtual JsonResult CheckDuplicateType(masterTypeCont tipe, String applconst_id)
    {
        Int32 intID = Convert.ToInt32(applconst_id);
        return Json(typeEnt.ValidateCustomer(intID, tipe.note1), JsonRequestBehavior.AllowGet);
    }

这是 ValidateCustomer 函数:

public bool ValidateCustomer(Int32 id, String nama) {
        Int32 x = db.appl_const.Where(a =>
           a.group_id == "CH_COMP_CODE" &&
           a.note1.Trim() == nama.Trim() &&
           a.applconst_id != id).Count();

        Boolean res = x == 0 ? true : false;

        return res;
    }

这是我的看法:

    @{
    ViewBag.Title = "Type List";
    Layout = "../Shared/_Layout.cshtml";
}

<div class="direct-content">
@using (Html.BeginForm())
{    
    @(Html.Telerik().Grid<ComplaintHandling.Models.masterTypeCont>()
        .Name("TypeGrid")
        .Localizable("id-ID")
        .ToolBar(commands =>
        {
            commands.Insert();
            commands.SubmitChanges();
        })
        .DataKeys(keys => keys
            .Add(o => o.applconst_id)
                .RouteKey("applconst_id"))
        .DataBinding(dataBinding =>
        {
            dataBinding.Ajax()
                .Select("_SelectAllType", "Type")
                .Update("_SaveBatchType", "Type");
        })
        .Columns(columns =>
        {
            columns.Bound(o => o.applconst_id).Hidden();
            columns.Bound(o => o.note1).Title("Name");
            columns.Command(commands =>
            {
                commands.Delete().ButtonType(GridButtonType.Text);
            }).Title("Command");
        })
        .ClientEvents(events => events
                .OnEdit("OnEditGrid")
        )
    .Editable(editing => editing.Mode(GridEditMode.InCell))
    .Selectable()
    .Pageable(pager => pager.PageSize(15))
    .Filterable()
    .Sortable()
    .Scrollable(x => x.Height("450px"))
    .KeyboardNavigation()
    .Resizable(x => x.Columns(true))
    )

    <input type="hidden" name="applconst_id" id="applconst_id" value="1">
}
</div> 

我在那里编写隐藏输入以包含 applconst_id,但它的值仍然没有传递给控制器​​。

对不起,我的英语不好。

任何帮助将不胜感激。

谢谢。

4

2 回答 2

0

试试这样:

[HttpGet]
public virtual ActionResult CheckDuplicateType(masterTypeCont tipe)
{
    var result = typeEnt.ValidateCustomer(tipe.applconst_id, tipe.note1);
    return Json(result, JsonRequestBehavior.AllowGet);
}
于 2013-08-14T07:46:17.460 回答
0

感谢之前的回答。

经过一番研究,我终于找到了解决自己问题的方法。
我在那里创造了一个小技巧,也许这不是一个好方法,但至少它可以解决我的问题。
基本上,我只是使用元素的 name 属性,以便将其值传递给控制器​​。

在这里,我将详细解释我是如何做到这一点的。

首先,我将视图中的网格列更改为:
请关注 applconst_id 隐藏字段。我在那里添加客户端模板。

columns.Bound(o => o.applconst_id).Hidden()
            .ClientTemplate("<input class='typeID' name='common_id' value='<#= applconst_id #>'>");
        columns.Bound(o => o.note1).Title("Nature of complaint");

其次,我在“onEdit”函数中添加了这段代码:

//this code change ID that is being edited, so that it can be passed to controller
    var $inputID = $('.t-grid-edit-cell').prev().find('.typeID');
    $inputID.attr('name', 'applconst_id');

    //change back ID that is not being edited, so that it's not passed to controller
    $('td:not(.t-grid-edit-cell)').prev().find('.typeID').attr('name','common_id');

第三,这是我的控制器:

[HttpGet]
    public JsonResult CheckDuplicateType(String applconst_id, String note1)
    {
        Int32 IntID = Convert.ToInt32(applconst_id);
        return Json(typeEnt.ValidateCustomer(IntID, note1), JsonRequestBehavior.AllowGet);
    }

我的“ValidateCustomer”功能保持不变。

我希望我的解决方案可以帮助与我有同样问题的其他人。

谢谢。

问候,
LW

于 2013-08-15T04:41:55.520 回答