1

私はこのような剣道グリッドを持っています:

var grid = diffGrid.kendoGrid({
    autoBind: false,
    filterable: true,
    pageable: true,
    resizable: true,
    sortable: true,
    columns: [
         {
             field: "First Name",
             title: "First Name"
         }, {
             field: "Last Name",
             title: "Last Name"
         }
    ]
}).data("kendoGrid");

「名」列または「姓」列のフィルター入力テキストボックスにユーザー入力を取得するにはどうすればよいですか?

4

1 に答える 1