or


@(Html.Kendo().Grid<projectInfoViewModel>().Name("grid2").Columns(cols =>{ cols.Bound(e => e.OrgID).Tital("View Detail").Template(e => { }).ClientTemplate(" "); cols.Bound(e => e.OrgName).Title("Organization");})
.DataSource(dataSource => dataSource.Ajax()
.Read(read => read.Action("Index", "Summary")) ) .ClientRowTemplate( "<tr>" + "<td>" + @Html.ActionLink("#: OrgID#", "Index", "Info", new orgViewModel { oID = int.Parse("#: OrgID#"), uID = int.Parse("#: UserID#") }, null) + "</td>" + "<td>" + "#: City #<br/>" + "#: ProvinceText#<br/>" + "#: CountryText# " + "</td>" + "</tr>" ) @(Html.Kendo().Grid(Model).Name("grid").Columns(cols =>{ cols.Bound(c => c.OrgID).Template(e => { }); cols.Bound(c => c.UserID); cols.Bound(c => c.IsAssigned);}).RowTemplate(@<text>@item.OrgName<br />@item.City, @item.ProvinceText, @item.CountryText</text>))