Widgets: ComboBox: Setting width/height of combobox causes it to render as a 
listbox in IE6
-------------------------------------------------------------------------------------------

                 Key: XAP-526
                 URL: https://issues.apache.org/jira/browse/XAP-526
             Project: XAP
          Issue Type: Bug
          Components: Widgets: Other
            Reporter: Trevor Oldak


Run the following xal in IE6. The first combobox will show as a normal 
combobox. The second one will show as a listbox.
                        <horizontalBoxPane>
                                <freePane width="500px" height="200px" 
backgroundColor="#F0F0F0"
                                        id="testComponentFreePane">
                                        <comboBox id="testComponent">
                                                <listBox 
id="testComponentListBox"
                                                        
onCreate="mco:attributeSetter.registerElement(this)">
                                                        <listItem text="Option 
1" value="Value 1"/>
                                                        <listItem 
id="testOption2" text="Option 2" value="Value 2"
                                                                
onCreate="mco:attributeSetter.registerElement(this)"/>
                                                        <listItem text="Option 
3" value="Value 3"/>
                                                        <listItem text="Option 
4" value="Value 4"/>
                                                </listBox>
                                        </comboBox>
                                </freePane>
                                <freePane width="500px" height="200px" 
backgroundColor="#CCCCCC">
                                        <comboBox text="ComboBox" width="200px">
                                                <listBox>
                                                        <listItem 
text="listItem #1"/>
                                                        <listItem 
text="listItem (selected)" selected="true"/>
                                                        <listItem 
text="listItem #3"/>
                                                </listBox>
                                        </comboBox>


                                </freePane>
                        </horizontalBoxPane>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to