KendoUI DropDownList使用JavaScript填充包含数据结果的文本框

时间:2013-07-25 15:11:37

标签: jquery asp.net-mvc drop-down-menu kendo-ui

提前致谢...

我是KendoUI控件的新手,并试图解决我在更改Kendo DropDownList控件中的项目时更新文本框字段时遇到的问题。

我在加载View时使用ViewData方法填充DropDownList,然后调用返回该特定行的Json结果方法,然后用于填充文本框字段。

我能够点击Json事件,但由于某种原因我在jquery.min.js(jQuery v1.9.1)文件中出错,而且函数(数据)从未触发,它只是完全跳过它。

这是我从jquery.min.js文件中得到的错误...

GET http://localhost:52078/Settings/GetEtilizeLocale/7 500 (Internal Server Error)       jquery.min.js:19
b.ajaxTransport.send jquery.min.js:19
b.extend.ajax jquery.min.js:19
b.each.b.(anonymous function) jquery.min.js:19
ddlChange ViewLocales:192
i.extend.trigger kendo.all.min.js:9
o.extend._change kendo.all.min.js:14
o.extend._blur kendo.all.min.js:14
o.extend._focus kendo.all.min.js:14
o.extend._accept kendo.all.min.js:15
o.extend._click kendo.all.min.js:14
b.extend.proxy.b.isFunction.i jquery.min.js:4
b.event.dispatch jquery.min.js:4
b.event.add.v.handle

这是我的代码......

JS查看

    //Auto populate other edit popup fields when ddl changes value

    function ddlChange(e) {            
        $.get("/Settings/GetEtilizeLocale/" + $("#EtilizeLocaleID").data().kendoDropDownList.value(), function (data)
        {
            alert($('#Name').value());
            //$('#Name').val(data.name);
            //$('#LanguageCode').val(data.languagecode);
            //$('#CountryCode').val(data.countrycode);
            //$('#IsActive').val(data.isactive);
        });            
    }

C#Controller

public ActionResult GetEtilizeLocale(int id = 0)
    {
        var dataContext = new EtilizeEntities();
        Etilize_Locale loc = dataContext.Etilize_Locale.Find(id);

        return Json(loc);
    }

1 个答案:

答案 0 :(得分:0)

终于明白了!

不得不改变

return Json(loc)

return Json(loc, JsonRequestBehavior.AllowGet);

对于遇到过这个问题的其他人。