I really have 2 questions. One is it possible and two how to do it? RoleModel Type has an IEnumberable of PermissionModel and I'd like that column to show up as a list view. Something similar to this. I'm not sure how to bind the listview to the Permissions object.
@(Html.Kendo().Grid<RoleModel>()
.Name("RoleGrid")
.Columns(x =>
{
x.Bound(p => p.Name).Width(150);
x.Bound(p => p.Description).Width(350);
x.Bound(p => p.Permissions).ClientTemplate("test");
}))
<script type="text/x-kendo-template" id="test" >
@(Html.Kendo().ListView<PermissionModel>().Name("listView").AutoBind(true).ToClientTemplate() )
</script>