我正在使用Kendo UI网格开发asp.net MVC。 我从方法中获取信息并将其提供给网格。我在工具栏中有一个datepicker所以当我选择一个新的日期时,代码将转到方法refilter LINQ然后我收到一个新的列表。
我写了这段代码:
public ActionResult Grid_ReadLogAdminList([DataSourceRequest] DataSourceRequest request,[Bind(Prefix = "id")] string date)
{
//both the date and result is correct always
var jsonResult = Json(result, JsonRequestBehavior.AllowGet);
jsonResult.MaxJsonLength = int.MaxValue;
return jsonResult;
}
这是我更改datepicker时的javascript:
function filterDate()
{
$("#LogAdminGrid").kendoGrid({
dataSource: {
transport: {
read: {
url: '/LogAdmin/Grid_ReadLogAdminList/',
type: 'get',
dataType: 'json',
data: {
id: kendo.toString($("#datepicker").data("kendoDatePicker").value(), "dd.MM.yyyy")
}
}
}
}
});
}
一切正确,我可以正确访问该方法。但是在我收到过滤器之后返回方法并出错:
kendo.all.js:6599 Uncaught TypeError:e.slice不是函数
我不知道为什么以及如何解决它。如果你可以帮我的话,请你好吗?
答案 0 :(得分:1)
当你使用kendo ui MVC网格时,我会建议使用以下方法。
查看强>
@(Html.Kendo().Grid<WebApplication2.Models.Product>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(product => product.ProductID);
columns.Bound(product => product.ProductName);
})
.Pageable()
.Sortable()
.DataSource(dataSource => dataSource
.Ajax()
.Model(model =>
{
model.Id(x => x.ProductID);
})
.Read(read => read.Action("Grid_Read", "Home").Data("gridParam"))
)
)
<input id="txtID" type="text" value="1" />
<input type="button" value="filterGrid" onclick="filterGrid();" />
<script>
function gridParam() {
return {
ID: $("#txtID").val()
}
}
function filterGrid() {
$("#grid").data("kendoGrid").dataSource.read();
$("#grid").data("kendoGrid").refresh();
}
</script>
<强>控制器强>
public ActionResult Grid_Read([DataSourceRequest]DataSourceRequest request, int? ID)
{
List<Product> lst = new List<Product>();
lst.Add(new Product() { ProductID = 1, ProductName = "aaa" });
lst.Add(new Product() { ProductID = 2, ProductName = "bbb" });
lst.Add(new Product() { ProductID = 3, ProductName = "ccc" });
if (ID.HasValue)
lst = lst.Where(i => i.ProductID == ID.GetValueOrDefault()).ToList();
return Json(lst.ToDataSourceResult(request), JsonRequestBehavior.AllowGet);
}
<强>模态强>
public class Product
{
public int ProductID { get; set; }
public string ProductName { get; set; }
}
错误“e.slice不是函数”的根本原因是,不是将数组绑定到我们绑定对象的kendo网格。 (因为我们只能应用切片方法数组)