Widgets: CSS comboBox - setting width breaks component visually
----------------------------------------------------------------
Key: XAP-411
URL: https://issues.apache.org/jira/browse/XAP-411
Project: XAP
Issue Type: Bug
Components: Widgets: Other
Reporter: Matt Carbone
Setting the width of a comboBox via CSS will not set the actual textField's
width. It creates a border of that width that extends beyond the rendered
comboBox.
<comboBox class="_test" x="500px" y="200px">
<listBox >
<listItem text="blar"/>
<listItem text="blar"/>
<listItem text="blar"/>
<listItem text="blar"/>
<listItem text="blar"/>
<listItem text="blar"/>
<listItem text="blar"/>
<listItem text="blar"/>
<listItem text="blar"/>
</listBox>
</comboBox>
._test
{
border-color: Lime;
border-style: solid;
border-width: 3px;
width:400px;
color:#ffffff;
font-size: 20px;
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.