There is no footer support in DG. Maybe in a future release. Your choices are to put a custom component along the bottom, or try a custom collection that...
It depends. Drawing into the graphics layer is fast and lightweight, but you can't manipulate the rectangles later (they've been painted). Using sub objects...
I want to arm a team of FlexComponent members with administration capability (spam deletion, user banning). This team will help fight the evil that seems to be...
I'm in the process of creating a custom look for a Flex app and ran into a problem while creating custom skins for scrollbars. There is a hard-coded shape...
Sign me up I'll give it a go. I'm new to the list but am an active Flex developer and I've posted a few ( very spammed articles on Flex ) articles on my blog....
We had a client with a request to put a form in the header of the datagrid and we ended up placing a component right above as Gordon suggests. It lacks some of...
Hi, I just thought I might run this passed the flex engineers. I see in the code path in BoxLayout, that if there is one child of the Container, you do not...
Hi Pablo, i did headerWordWrap= "true" it is working, but the problem is that I am creating my own datagrid component in which I specifying the rowheight to be...
I think that is how includeInLayout is supposed to work. My impression was that includeInLayout=false means that the container will resize and position it just...
I'm not sure I understand the issue, but if you want the headers to word wrap, they may need to be taller than the rows. You can always calculate the height...
Peter, I just meant that if there is one child, there is a different code path and when setActualSize() is called on that one child, includeInlayout is not ...
Hi rd I thinks there's an error. I tried to: 1. Group on a column 2. Unfold grouped rows 3. Sort on another column (nothing happens) After that, sorting...
Hi Henrik, Thanks for checking the component. You are right about the error - current version doesn't sort in "unfolded mode". I didn't figure out the best way...
Hi Arpan You can do this in .as file by just creating CSS classes in action script. by contol name Text { color : #ffffff; ... }; or .class_name { color :...
Is there any way to access the Inspectable metatag from actionscript or create similar meta information (Inspectable just happens to have every property I want...
Daniel Freiman
FreimanCQ@...
Dec 4, 2006 4:50 pm
873
In actionscript you can also use the setStyle method to programmatically set any of the styles for that element. myTextBox.setStyle("color", 0xFF0000); -Andy ...
Group: I've written up my question here: http://www.newviewnetworks.com/nvnhome/blog/client/media/metadata_inspectable.swf I look forward to the answer -- ...
The metadata is not available from AS. I believe FlexBuilder scans the source. ________________________________ From: flexcomponents@yahoogroups.com ...
I'm not sure I understand the question. If you want to put an image in the Canvas, you can either use the backgroundImage style or add an Image component to...
Or you can go the extra mile and use CSSStyleDeclaration class along with the StyleManager to create styles in actionscript and then reference those styles...
yeah, sounds like your gonna have to build the metadata object in memory. You won't have access to the [Inspectable] metadata cause thats used during ...
yeah, i was hoping I wouldn't have to do that. I found you can find bindable metatags through code so I was hoping that there would be some obscure way into...