在asp.net mvc5中我有telerik grid
@(Html.Kendo().Grid<KerberosTest.Models.Bench>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(p => p.name).Title("Bench").Filterable(ftb => ftb.Cell(cell => cell.Operator("contains"))).Width(150);
//columns.Bound(p => p.seatsCount).Title("Total Seats");
//columns.Bound(p => p.bookedSeats).Title("Booked Seats");
columns.Bound(p => p.seatsCount).Title("Total Seats").Width(150).Filterable(ftb => ftb.Cell(cell => cell.Operator("contains")));
columns.Command(command => command.Custom("checkBench").Text("Check in").Click("ShowTimePopup")).Width(160).Title("Check in");
})
我想知道当我按下按钮并调用ShowTimePopup时,我可以读取与我点击的按钮相同行的第一列值(p =&gt; p.name)的值