私は koGrid を持っていて、行から一部のセル (2 つのセル) のみを選択したいと考えています。プロパティを使用canSelectRows: true
すると、行全体を選択できます-これは必要ありません。koGrid 行から特定のセルを選択する方法は?
グリッド ソース:
this.gridOptions = {
data: self.people,
enablePaging: true,
pagingOptions: self.pagingOptions,
useExternalSorting: true,
sortInfo: self.sortingOptions,
enableColumnResize: false,
keepLastSelected: false,
multiSelect: true,
showColumnMenu: false,
showFilter: false,
canSelectRows: false,
columnDefs: [{
field: "Age",
displayName: "Age",
width: "33.3%",
sortable: true
},
{
field: "Address",
displayName: "Address",
width: "33%",
sortable: true
},
{
field: "Website",
displayName: "Website",
cellTemplate:
'<div>' +
' <a data-bind="attr: {href:\'linkAddress'">People</a>' +
'</div>',
width: "33%"
}],
selectedItems: self.selectedItems,
plugins: [new koGridSetDefaultSortingPlugin(this.sortingOptions), new koGridSetNextPagePlugin()]
};