我有一个像这样的剑道网格..
@(Html.Kendo().Grid<baseballViewModel>()
.Name("baseball")
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => read.Action("Index", "baseball"))
.ServerOperation(false)
)
.HtmlAttributes(new { style = "height:175px;" })
.Columns(col => {
col.Bound(player=> player.Date).Width(85);
col.Bound(player=> player.Year).Width(55);
col.Bound(player=> player.Name).Width(150);
col.Bound(player=> player.team).Width(120);
}).Sortable()
.Scrollable()
.Pageable()
)
在我的 javascript 中,我想获取列“团队”值的最大长度。我的意思是,我想找到列队所有值的数据字符串长度。可能吗。我熟悉使用客户端模板并将单个团队值传递给 javascript。但这曾经似乎很棘手。