This is a migrated thread and some comments may be shown as answers.

Cannot shift-tab out of a toolbar

4 Answers 84 Views
Toolbar
This is a migrated thread and some comments may be shown as answers.
Rich
Top achievements
Rank 1
Rich asked on 27 Sep 2016, 10:23 PM

Using even the published demo code at demos.telerik.com, I cannot shift-tab out of a toolbar control.  This can be reproduced at http://demos.telerik.com/kendo-ui/toolbar/index:  get the focus inside the toolbar and press tab to go forward through the buttons, eventually exiting the toolbar and on to other items.  Again, put the focus in the toolbar and use shift-tab to move backwards through the elements.  The focus reaches the first button and stops - it won't shift-tab out.  

In my product's code, I experience almost the same, except the shift-tabbing seems to stop at the second button in the toolbar, not the first as seen in the demo.

4 Answers, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 29 Sep 2016, 02:08 PM
Hello Rich,

Are there any elements that can be focused placed before the ToolBar in your scenario? Here's the demo you linked opened in dojo with 2 input elements added before the ToolBar. With their presence Shift + Tab correctly focuses the input that precedes the ToolBar.

Regards,
Ivan Danchev
Telerik by Progress
 
Get started with Kendo UI in days. Online training courses help you quickly implement components into your apps.
 
0
Rich
Top achievements
Rank 1
answered on 29 Sep 2016, 05:06 PM

Thanks Ivan!  I observe the expected tabbing with your example.  I compared it to mine, and I have elements that are outside of the DIVs containing the toolbar.  If you put those first two input buttons in a separate div that doesn't (eventually) contain the toolbar, you'll see the issue.  Here's a small edit of your snippet, in other words, change:

 

<div id="example">
           <div class="demo-section k-content wide">
             <input type="text" id="input1"  />
             <input type="text" id="input2"  />
               <div id="toolbar"></div>
           </div>
           <script>....

to this:

<div id="outer div">
     <input type="text" id="input1"  />
     <input type="text" id="input2"  />
 </div>
 <div id="example">
    <div class="demo-section k-content wide">
       <div id="toolbar"></div>
    </div>
    <script>...

0
Rich
Top achievements
Rank 1
answered on 03 Oct 2016, 12:31 AM

Hi Ivan,

In addition to this issue (which seems to depend on whether the elements to shift-tab out to are in a containing div), I've found what I think is another problem.

If resizable is set to false, then the focus using shift-tab always *stops* at the second toolbar button.  This is seen on the Telerik-supplied demo here at dojo:   in the "Non-resizable Toolbar" toolbar, tab to "Button 4", then attempt to shift-tab to "Button 1".  The focus stops at "Button 2" and won't go any further back.

0
Ivan Danchev
Telerik team
answered on 03 Oct 2016, 11:04 AM
Hi Rich,

Thank you for your efforts in reproducing and describing the problematic behavior you have encountered.

We logged both issues you reported as bugs. Their status can be tracked through the respective public items logged in our public github repo: issue1, issue2.

As a token of gratitude for your involvement in identifying these issues I updated your Telerik points.

Regards,
Ivan Danchev
Telerik by Progress
 
Get started with Kendo UI in days. Online training courses help you quickly implement components into your apps.
 
Tags
Toolbar
Asked by
Rich
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Rich
Top achievements
Rank 1
Share this question
or