frankly
8 Apr 2007, 12:17 PM
Hi,
I tested the combo boxes inside an already running app and couldn't figure out why it didn't display in IE, for the "transform a select".
got a message "HTML source not valid for this operation" in that case :
<p>
<select id="state" name="state">
</select>
</p>
and it works with this :
<select id="state" name="state">
</select>
JS is only with the example given :
var box_states = new Ext.form.ComboBox({
typeAhead: true,
triggerAction: 'all',
transform:'state',
forceSelection:true
});
There are also some issues with the margins, as well as a clear statement that I didn't find, that prevent me from using <label> in front of the select.
Already seen all these or not?
Thanks
I tested the combo boxes inside an already running app and couldn't figure out why it didn't display in IE, for the "transform a select".
got a message "HTML source not valid for this operation" in that case :
<p>
<select id="state" name="state">
</select>
</p>
and it works with this :
<select id="state" name="state">
</select>
JS is only with the example given :
var box_states = new Ext.form.ComboBox({
typeAhead: true,
triggerAction: 'all',
transform:'state',
forceSelection:true
});
There are also some issues with the margins, as well as a clear statement that I didn't find, that prevent me from using <label> in front of the select.
Already seen all these or not?
Thanks