我正在用JSRender库迁移Jquery模板。我需要从模板页面中检索数据对象,然后需要更新相应的属性。我的旧jquery.tmpl代码如下所示:
JavaScript
function updateItem(event) {
var $tmplItem = $(this).tmplItem();
$tmplItem.data.showItem = !$tmplItem.data.showItem;
$tmplItem.update();
}
html
{{if showItem}}
<div>
This is your item.
</div>
{
我真的被困在这里了。如何将另一个列表数据的列表绑定到MVC中的Telerik网格?
示例:
public class GetTripDetailsResponse
{
public DateTime PersonalDriveDate { set; get; }
public List<AllDrivesInfo> AllDrives { set; get; }
}
public class AllDrivesInfo
{
public int TripId { set; get; }
public string Time { set; get;