masa2
3 Apr 2007, 7:37 AM
Hi,
I create several option tags for a select element using DomHelper.append:
dh = Ext.DomHelper;
dh.append(this.dayField, {tag: 'option', value: value, html: text});
It works in FF but the options were missing for IE 7.
After setting the dom switch:
dh = Ext.DomHelper;
dh.useDom=true;
dh.append(this.dayField, {tag: 'option', value: value, html: text});
it works.
Is anybody having the same problem?
The problem occurs with new beta-version.
I create several option tags for a select element using DomHelper.append:
dh = Ext.DomHelper;
dh.append(this.dayField, {tag: 'option', value: value, html: text});
It works in FF but the options were missing for IE 7.
After setting the dom switch:
dh = Ext.DomHelper;
dh.useDom=true;
dh.append(this.dayField, {tag: 'option', value: value, html: text});
it works.
Is anybody having the same problem?
The problem occurs with new beta-version.