How to remove a tabindex from editor toolbar
See original GitHub issueI am facing problem to set the tabindex=-1 for toolbar options. where i observed that it doesn’t remove tabindex from toolbar
<span _ngcontent-c2="" class="ql-color ql-picker ql-color-picker ql-expanded" tabindex="-1"><span class="ql-picker-label" tabindex="0" role="button" aria-expanded="true" aria-controls="ql-picker-options-1" data-value="#ff0000"><svg viewBox="0 0 18 18"> <line class="ql-color-label ql-stroke ql-transparent" x1="3" x2="15" y1="15" y2="15"></line> <polyline class="ql-stroke" points="5.5 11 9 3 12.5 11"></polyline> <line class="ql-stroke" x1="11.63" x2="6.38" y1="9" y2="9"></line> </svg></span><span class="ql-picker-options" aria-hidden="false" tabindex="-1" id="ql-picker-options-1"><span tabindex="0" role="button" class="ql-picker-item ql-selected ql-primary" data-value="#ff0000" style="background-color: rgb(255, 0, 0);"></span><span tabindex="0" role="button" class="ql-picker-item ql-primary" data-value="#5b9bd5" style="background-color: rgb(91, 155, 213);"></span></span></span>
please help me with possible solution for above scenario.
Issue Analytics
- State:
- Created 4 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
How can I remove tab from the toolbar of primeng p-editor in ...
tabIndex ="-1" works for most of them but it doesnot work with select tag and with "ql-image". I want to remove all the...
Read more >HtmlEditor - How to specify tabIndex in its toolbar items
Hi, I have an HTML Editor with a toolbar full of dxi-items like bold, italics, ect. The issue is when I tab through...
Read more >Tab Key Navigation - CKEditor 4 Documentation
To ease page navigation by using keyboard and further boost accessibility, CKEditor 4 can be reached by using the Tab and Shift+Tab shortcuts...
Read more >Change the default tab order for controls on a form
Right-click the control for which you want to change the tab order, and then click Control Properties. · Click the Advanced tab. ·...
Read more >tabindex - HTML: HyperText Markup Language | MDN
Click anywhere in this pane, then try tabbing through the elements. First in tab order: Tabbable due to tabindex. Not tabbable: no tabindex....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
editorCreated(event) { $(‘.ql-toolbar *’).each(function(i){ $(this).attr(‘tabindex’,-1); }); }
Yes, this works for me But it’s a hack , i am looking for solution respect to angular. Thanks for your guidance.
I can remove some of the
tabs
but not every is working:Update: My solution is