
|
If you were logged in you would be able to see more operations.
|
|
|
Flex SDK
Created: 05/13/08 04:13 PM
Updated: 10/09/08 09:38 PM
|
|
| Component/s: |
Styles
|
|
Security Level:
|
Public
(All JIRA Users
)
|
|
| Severity: |
Incorrectly Functioning
|
| Reproducibility: |
Every Time
|
| Discoverability: |
High
|
| Found in Version: |
SDK Flex 3 (Released)
|
| Milestone: |
SDK Community Fix Candidates
|
| Affected OS(s): |
All OS Platforms
- All
|
| Steps to Reproduce: |
Steps to reproduce:
1. Create an Accordion with labels in the headers
2. Create a css style sheet with an Accordion{text-indent : 10}
Actual Results:
Note that the end of the label strings in the accordion are truncated on the right
Steps to reproduce:
1. Create an Accordion with labels in the headers
2. Create a css style sheet with an Accordion{text-indent : 10}
Actual Results:
Note that the end of the label strings in the accordion are truncated on the right
|
| Language Found: |
English
|
| Bugbase Id: |
none
|
| Triaged: |
Yes
|
| Regression: |
Yes
|
| QA Owner: |
Ella Mitelman
|
| Resolved by: |
Gordon Smith
|
| Confirmed Version: |
SDK Flex 3.2.0
- Next Build
|
| Participants: |
Ella Mitelman, Gordon Smith, Greg Lyon, Lauren Park, Peter deHaan (Adobe) and Tom Schober
|
| Browser: |
Firefox 2.x
|
|
Sub-Tasks:
|
All
|
Open
|
|
| Sub-Task Progress: |
|
|
|
All
|
Comments
|
|
Sort Order:
|
|
1) Any children of the accordion that don't have a width specified will have truncated text as well, unless a negative text-indent is specified for the children.
2) The same behavior can be created with other containers, e.g. Panel.
Here is an example:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
<mx:Style>
Panel {
text-indent:10;
}
</mx:Style>
<mx:Panel layout="vertical" title="Look at me">
<mx:Text text="This mx:text gets truncated" />
<mx:LinkButton id="lbEmail" x="10" y="68" label="This mx:linkbutton gets truncated"/>
<mx:Button label="this mx:button gets truncated too" x="10" y="{lbEmail.y + lbEmail.height + 10}"/>
<mx:ComboBox>
<mx:Array>
<mx:Object label="this mx:combobox gets truncated as well" />
</mx:Array>
</mx:ComboBox>
</mx:Panel>
</mx:Application>