This question is locked. New answers and comments are not allowed.
I have added a tab index to the Html Attributes of the Editor Definition. This applies to the hidden Text Area, but, does not affect the IFRAME.
Does anyone have any guidance about tab to/from the Editor control?
C
Does anyone have any guidance about tab to/from the Editor control?
C
5 Answers, 1 is accepted
0
Jeff
Top achievements
Rank 1
answered on 29 Dec 2011, 04:44 PM
I'm also looking for something similar. We have a request to turn off tab stops on all the editor tool buttons, so that when the user tabs into the editor control, it takes them right to the text box.
If anyone knows how to do that, could you please post it?
Thanks!
Jeff
If anyone knows how to do that, could you please post it?
Thanks!
Jeff
0
Hello All,
The same approach could be used to set the iframe's tabindex:
Regards,
Daniel
the Telerik team
The OnLoad event of the Editor could be used to set additonal attributes of the generated elements.
Setting the tabindex to -1 for all buttons would exclude them from the tabbing order. For example:
function onLoad(e) {$(".t-editor-toolbar-wrap ", this).find('a,div,input').attr('tabindex', -1);}function onLoad(e) { $("iframe", this).attr('tabindex', -1);}Regards,
Daniel
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now
0
Jeff
Top achievements
Rank 1
answered on 30 Dec 2011, 03:20 PM
You guys are awesome. Best support ever. Thanks!
0
Dmitry
Top achievements
Rank 1
answered on 16 Mar 2012, 10:50 AM
Daniel, your answer helped me too.
Thanks.
But I have one more question related to tab's.
It looks like there is a difference in behavior when user press TAB key being inside Editor.
For example, FF goes focus into next element outside Editor frame, IE and Chrome leave focus inside frame.
I beleive, that is not direclty related to the Telerik team, but meu be you can suggest how do i achieve the FF behavior in all other browsers.
You can try to open
demo page
and see described differences.
Thanks in advance.
Thanks.
But I have one more question related to tab's.
It looks like there is a difference in behavior when user press TAB key being inside Editor.
For example, FF goes focus into next element outside Editor frame, IE and Chrome leave focus inside frame.
I beleive, that is not direclty related to the Telerik team, but meu be you can suggest how do i achieve the FF behavior in all other browsers.
You can try to open
demo page
and see described differences.
Thanks in advance.
0
Hello Dmitry,
Thank you for bringing this difference in behaviors to our attention. At this point, I am not sure how can this be avoided. I logged it in our system and we will investigate the possible solutions to this issue.
Kind regards,
Daniel
the Telerik team
Thank you for bringing this difference in behaviors to our attention. At this point, I am not sure how can this be avoided. I logged it in our system and we will investigate the possible solutions to this issue.
Kind regards,
Daniel
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now.