You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "gkk (JIRA)" <ji...@apache.org> on 2013/10/25 14:47:31 UTC

[jira] [Commented] (FLEX-33846) spark datagrid horizontal scroll bar may not show when added as child of divided box

    [ https://issues.apache.org/jira/browse/FLEX-33846?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13805276#comment-13805276 ] 

gkk commented on FLEX-33846:
----------------------------

Thanks for "resolving" the duplicate issues Justin. I still can't see any of these 4 issues from: 

https://issues.apache.org/jira/browse/FLEX 

If I click "Added Recently", there only appears 1 issue (not mine) added yesterday. If I click "Reported by Me", it just shows two older issues. 

Is there an approval process that gates these issues being viewable? If not, any idea why I can't see them? 

Sorry for the newbie questions. Next time I'll be more careful when I submit issues. I guess I sort of expected JIRA to provide confirmation that the issue was successfully submitted, or automatically close the submission form when submitted instead of requiring me to click the "Cancel" button. 



> spark datagrid horizontal scroll bar may not show when added as child of divided box
> ------------------------------------------------------------------------------------
>
>                 Key: FLEX-33846
>                 URL: https://issues.apache.org/jira/browse/FLEX-33846
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: mx: DividedBox, Spark: DataGrid
>    Affects Versions: Apache Flex 4.10.0, Apache Flex 4.11.0
>         Environment: FB 4.7, SDK 4.10.0, SDK 4.11 rc2, SDK nightly build 10/24/2013
>            Reporter: gkk
>            Priority: Minor
>
> Run the application below. When using mx:DividedBox and including spark datagrid as child, resizing the divided box, in some cases, doesn't draw the datagrid's horizontal scroll bar.
> Originally saw in 4.10.0 using Flash Builder 4.7. Verified still in nightly build on 10/24/2013 (targeted for 4.12).
> ------ example code -------
> <?xml version="1.0" encoding="utf-8"?>
> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
> 			   xmlns:s="library://ns.adobe.com/flex/spark" 
> 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
> 			   minWidth="600" minHeight="600">
> 	
> 	<fx:Declarations>
> 		<fx:String id="sampleText">Lorem Ipsum is the standard dummy text of the typesetting industry.</fx:String>
> 	</fx:Declarations>    
> 	
> 	<s:VGroup horizontalAlign="left" paddingLeft="30" paddingTop="30">
> 		
> 		<s:Label text="1. Click and drag divider bar lower to shrink height of datagrid"/>
> 		<s:Label text="    to display about 1.5 rows."/>
> 		<s:Label text="2. Notice the HorizontalScrollBar disappears for certain heights."/>
> 		
> 		<mx:DividedBox backgroundColor="0xaa0000" >
> 			<s:TextArea height="30" width="300" text="This is a text area."/>
> 			<s:DataGrid id="dg1" width="300">
> 				
> 				<s:columns>
> 					<s:ArrayList>
> 						<s:GridColumn dataField="value" headerText="Column 1" width="200"/>
> 						<s:GridColumn dataField="value" headerText="Column 2" width="200"/>	
> 					</s:ArrayList>
> 				</s:columns>
> 				
> 				<s:ArrayCollection>
> 					<s:DataItem value="{sampleText}"/>
> 					<s:DataItem value="{sampleText}"/>
> 					<s:DataItem value="{sampleText}"/>
> 				</s:ArrayCollection>
> 				
> 			</s:DataGrid>
> 		</mx:DividedBox>
> 		
> 			
> 	</s:VGroup>
> </s:Application>



--
This message was sent by Atlassian JIRA
(v6.1#6144)