从其他列telerik Grid获取值

时间:2015-09-08 13:45:25

标签: c# asp.net asp.net-mvc telerik

在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)的值

0 个答案:

没有答案