vue-datagrid icon indicating copy to clipboard operation
vue-datagrid copied to clipboard

Scroll Focus

Open jlippold opened this issue 2 years ago • 1 comments

When using the arrow keys to navigate the spreadsheet in vue, and you navigate outside of the viewable scroll area, the view doesn't adjust to show the focused cell. But it does work on the demo found here: https://revolist.github.io/revogrid/demo/

Is there a plugin or property that revogrid is using that vue-datagrid is not?

Thanks for the help

jlippold avatar Jan 16 '22 15:01 jlippold

@jlippold I just submitted a very similar bug https://github.com/revolist/vue-datagrid/issues/39 . Maybe that's also your problem?

If you are not able to remove the CSS rule for [hidden] in your codebase (e.g. when importing another framework), you can temporarily fix it with:

[hidden] { display: block !important; visibility: hidden; pointer-events: none; }

koendeschacht avatar Mar 15 '22 09:03 koendeschacht