I need to provide full keyboard functionality in my page where I use FlyTreeView. I need to be able to navigate between controls on the page using Tab key.
If I understand right, the only way to make the FlyTreeView to support focusing with Tab, is giving it some TabIndex value. The problem is that my page is generated dynamically and I can never know how many controls are on the page and I can also never know what is the FlyTreeView's number in the page. This means that I cannot know what is the right TabIndex value for the control. Even more, the number of controls can change on the client side while expanding/collapsing sections containing controls.
All this does not allow me to get acceptable keyboard functionality with FlyTreeView. Any ideas?