Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for disabling selection of certain cells / columns #300

Open
mymoto23 opened this issue Jun 26, 2023 · 1 comment
Open

add support for disabling selection of certain cells / columns #300

mymoto23 opened this issue Jun 26, 2023 · 1 comment

Comments

@mymoto23
Copy link

mymoto23 commented Jun 26, 2023

Hi @nick-keller,

Great work on the package!

I was wondering if there was an option to disable each cell / columns "active" state - basically disabling selection.

I've gone through the docs but I could only find the "disable" option for each column, which prevents input, but not selection.

I've managed to come up with a hacky workaround where I manually set the selection within the onSelectionChange prop with the ref attached to the Grid component, as such:

	const ref = useRef<DataSheetGridRef>(null);

	return <DataSheetGrid {...props} onSelectionChange={({selection}) => {
		// disable selection over 3rd column
		if (selection.max.col >= 2) {
			ref.current.setSelection(...);
		}
	}} />

It works great, but on some keyboard actions such as "select whole row" or "select next column cell", the selection is affected very briefly, and results in a somewhat buggy animation.

Do you have any plans on adding an option on disabling columns / cells entirely?

Thanks.

@mymoto23
Copy link
Author

mymoto23 commented Jun 26, 2023

additionally,
the hack cannot "completely disable" the cell,
as selecting the "completely disabled" cell results in a selection of a nearby cell which is not "completely disabled".

@mymoto23 mymoto23 changed the title add support for disabling active state for certain cells / columns add support for disabling selection of certain cells / columns Jun 26, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant