Row Select #597
davidsaenz2003
started this conversation in
General
Row Select
#597
Replies: 1 comment 2 replies
-
By using gridSelection: {
current: {
// selection by single cell
cell: [1, 1],
// selection by multiple adjacent cells
range: { height: 2, width: 2, x: 2, y: 2 },
// more stackable regions
rangeStack: [{ height: 2, width: 4, x: 1, y: 3 }],
},
// selection by column(s)
columns: CompactSelection.fromSingleSelection(0),
// selection by row(s)
rows: CompactSelection.fromSingleSelection([6, 8]),
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Can I set a row as selected by default? And is it also possible to prevent clicking anywhere in the grid from unchecking the selected rows?
Beta Was this translation helpful? Give feedback.
All reactions