1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00

prevent drag on first two columns

This commit is contained in:
Martin McKeaveney 2020-11-01 17:11:22 +00:00
parent 26c29c0a45
commit 281721d55c
2 changed files with 5 additions and 4 deletions

BIN
.DS_Store vendored

Binary file not shown.

View file

@ -47,14 +47,16 @@
if (allowEditing) { if (allowEditing) {
result = [ result = [
{ {
pinned: "left", checkboxSelection: true,
lockPosition: true,
headerName: "Edit", headerName: "Edit",
pinned: "left",
sortable: false, sortable: false,
resizable: false, resizable: false,
suppressMovable: true, suppressMovable: true,
suppressMenu: true, suppressMenu: true,
minWidth: 84, minWidth: 114,
width: 84, width: 114,
cellRenderer: editRowRenderer, cellRenderer: editRowRenderer,
}, },
] ]
@ -63,7 +65,6 @@
Object.keys(schema || {}).forEach((key, idx) => { Object.keys(schema || {}).forEach((key, idx) => {
result.push({ result.push({
headerCheckboxSelection: false, headerCheckboxSelection: false,
checkboxSelection: idx === 0 && allowEditing,
headerComponent: TableHeader, headerComponent: TableHeader,
headerComponentParams: { headerComponentParams: {
field: schema[key], field: schema[key],