-
3 Apr 2007 7:37 AM #1
DomHelper-Bug with IE
DomHelper-Bug with IE
Hi,
I create several option tags for a select element using DomHelper.append:
It works in FF but the options were missing for IE 7.Code:dh = Ext.DomHelper; dh.append(this.dayField, {tag: 'option', value: value, html: text});
After setting the dom switch:
it works.Code:dh = Ext.DomHelper; dh.useDom=true; dh.append(this.dayField, {tag: 'option', value: value, html: text});
Is anybody having the same problem?
The problem occurs with new beta-version.
-
3 Apr 2007 8:31 AM #2
Theres a thread in this forum about this. IE does not support dynamic option creation using HTML. There is no workaround.


Reply With Quote