用mvc绑定Kendo Grid

时间:2017-02-02 06:45:11

标签: asp.net-mvc asp.net-mvc-4 model-view-controller kendo-ui kendo-grid

我在ActionResult Advacedsearchresult中使用此子转换器属性搜索数据(附加了快照)

我得到1个结果bt无法在网格中显示请帮助并建议我如何在kendo网格中使用此数据或使用kendo网格绑定数据谢谢enter image description hereenter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

正如评论中提到的那样,由于您没有将参数传递给服务器,因此 500内部错误失败。要从客户端发送参数,您有两种方法: -

1)将参数作为路由值发送为read.Action("_AdvancedSearchResult", "ContactList", new { cont = 2 }) //Send param 方法,如下所示: -

Data

2)您可以使用read.Action("_AdvancedSearchResult", "ContactList").Data("additionalData")方法发送参数: ​​-

function additionalData{ return { cont: 2 }; }

并从JS返回数据: -

__Multithreading_Violation_AllThatIsLeftToUsIsHonor__