Thank you for reporting this bug. We will make it our priority to review this report.
-
Sencha User
[FEAT] [3.x/2.x] HTMLEditor - tabIndex
Guys:
Code:
var iframe = document.createElement('iframe');
iframe.name = Ext.id();
iframe.frameBorder = '0';
// ADDED TO ALLOW tabIndex TO HTMLEditor
if(this.tabIndex) iframe.tabIndex = this.tabIndex;
iframe.src = Ext.isIE ? Ext.SSL_SECURE_URL : "javascript:;";
this.wrap.dom.appendChild(iframe);
this.iframe = iframe;
will give the HTMLEditor the ability to have a tabIndex. Similar change in 3.0 but instead of the onRender (2.0) change the createIFrame (3.0) function.
Last edited by mystix; 29 Jun 2009 at 6:04 PM.
Reason: POST CODE IN [code][/code] TAGS. moved to 3.x Bugs fom 2.x Bugs
-
Thanks for the feature request. We will look into incorporating a configuration to give the HTMLEditor a tabIndex.
-
Ext JS Premium Member
-
Ext JS Premium Member
html editor still doesn't listen to the tab key
I'm wondering if this is already built in ?
the html editor still doesn't listen to the tab key ...
I'm working with extjs 3.4.0