On render, current focus is lost and goes on the Grid

Hello fine people.

I have an issue that I have been struggling with for a while. Every time there is a render happening in my code, the current focus goes back to the Grid, making my app a none-seamless experience.

Could anyone point me to what could cause that?

Thank you

Hello Karl,
It seems that you enabled the keyboard navigation. Right now, it is only working inside the grid. When Gantt repaints the data, the existing HTML elements are removed and the new ones are added. So, Gantt needs to restore the focus to the previous element.
There is no way to change how it works. However, you can disable the keyboard navigation when you don’t need it. But the implementation depends on how you expect it to work.

That worked, thank you so much