剣道グリッドを使用しましたが、コマンド列のない行を選択する必要があります。
これが私のコードです。
var grid = $("#grid").kendoGrid({
dataSource: grid,
height: 450,
sortable: true,
selectable: "row",
columns: [
{ field: "user" },
{ field: "subject" },
{ field: "status" },
{ command: ["Update"], title: "Subscribe" },
{ command: ["destroy "], title: "Delete"}
]
});
UIで、ユーザー、件名、ステータスのみを選択したい。