我是 MVC 的新手,并尝试使用将绑定到模型的 Kendo Grid 生成视图。
我的观点有
@ModelType CDB.GridDetail
@Code
Html.Kendo().Grid(Model.GridDetailPersons)() _
.Name("Grid") _
.Columns(Sub(c) _
c.Bound(Function(s) s.PersonID End Function) _
c.Bound(Function(s) s.Status End Function) _
c.Bound(Function(s) s.OperationalTeam End Function) End Sub) _
.Pageable() _
.Sortable() _
.ToolBar(Function(t) t.Create() _
t.Custom().Name("myCustomCommand").Text("custom toolbar button") End Function) _
.Filterable() _
.DataSource(Function(d) d.Ajax() _
.PageSize(200) _
.ServerOperation(False) End Function) _
.Render()
End Code
我的模型是
Public Class GridDetail
Public Property GridDetailPersons As IQueryable(Of Person)
Public Property Message As String
End Class
和
Imports System.ComponentModel
Imports System.ComponentModel.DataAnnotations
Public Class Person
<Required, StringLength(50), DisplayName("Person ID")>
Public Property PersonID As String
<DisplayName("Status")>
Public Property Status As String
<DisplayName("OPs Support Team")>
Public Property OperationsTeam As String
End Class
不幸的是,我似乎无法绑定到我的模型我在 VS(Model.GridDetailPersons 下的波浪线)中出现错误,指出类 'GridBuilder(Of Person)' 不能被索引,因为它没有默认属性。
如果我将行更改为未定义类型“Model.GridDetailPersons”Html.Kendo().Grid(Of Model.GridDetailPersons)()
的错误更改。
我在做什么错......那里很少,特别是如果使用razor vb语法。
我的网格将仅用于显示...不需要编辑、添加或删除。