Hi, is there any way to use tab navigation to tab through cells in read only mode, just like you can tab through them in editor?
Using tab navigation for read only cells
Thank you for contacting us. I’m not sure if I understood your requirement correctly, but actually you can tab through readOnly cells.
Here’s an example: https://jsfiddle.net/handsoncode/rLkq985e/
I just did some debugging, it looks like the tab is working but there is no border around the current highlighted cell. Do you have any idea what could be the issue?
In this situation I would need to see your implementation. Can you please modify my example so it represents your case?
Thank you for the help, but it seems this is the issue with something inside my app as the handsontable implementation seems like it should be.
The issue was:
.wtBorder {
display: none !important;
}
I had this set for some reason, previously.
Just one question again, is there any way to allow tab navigation without having to click inside the table?
I’m glad that you managed to find the source for the issue. As for your last question. You can use selectCell method to programmatically set focus in the table in a chosen cell:
Thank you, I appreciate the help.
You’re welcome! I will close this topic now.