1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +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) {
result = [
{
pinned: "left",
checkboxSelection: true,
lockPosition: true,
headerName: "Edit",
pinned: "left",
sortable: false,
resizable: false,
suppressMovable: true,
suppressMenu: true,
minWidth: 84,
width: 84,
minWidth: 114,
width: 114,
cellRenderer: editRowRenderer,
},
]
@ -63,7 +65,6 @@
Object.keys(schema || {}).forEach((key, idx) => {
result.push({
headerCheckboxSelection: false,
checkboxSelection: idx === 0 && allowEditing,
headerComponent: TableHeader,
headerComponentParams: {
field: schema[key],