Search the web
Sign In
New User? Sign Up
flexcomponents · Flex Component Development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2633 - 2663 of 3885   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2633
i have a *MenuBar* that have one root with no childs. how do i detect a click on the root? it seems that the itemClick only catch clicks on the menu itself, it...
Daniel Lopes
danielvlopes
Offline Send Email
Aug 1, 2007
8:10 pm
2634
Try listening for 'click' instead of 'itemClick'. - Gordon ________________________________ From: flexcomponents@yahoogroups.com ...
Gordon Smith
gsmithsf
Offline Send Email
Aug 1, 2007
11:13 pm
2635
Title: Senior Flex Developer Job Qualifications: - Must be a seasoned senior developer with Flex component experience - Has extensive knowledge of the Flex...
kebakh
Offline Send Email
Aug 2, 2007
8:34 pm
2636
Hello... I'm trying to create my own component derived by menubar component, because menubar is horrible (don't have methods to get menu root item, only show a...
Daniel Lopes
danielvlopes
Offline Send Email
Aug 2, 2007
8:37 pm
2637
private methods are private meaning they can not be overridden. You could listen for the same event in your subclass, use priorty or capture to be ahead or...
Michael Schmalle
teotigraphix
Offline Send Email
Aug 2, 2007
8:50 pm
2638
The objective of use this component is navigate in viewstacks. But the problem with Click is this event is dispatched every click in every place of component,...
Daniel Lopes
danielvlopes
Offline Send Email
Aug 2, 2007
8:54 pm
2639
I never used this commands "priority or capture", what they do? -- www.areacriacoes.com.br...
Daniel Lopes
danielvlopes
Offline Send Email
Aug 2, 2007
8:58 pm
2640
... Nothing. Private methods can't be overridden. ... I'm not sure what you mean as there is no mouseHandler() method in MenuBar. Are you talking about wanting...
Gordon Smith
gsmithsf
Offline Send Email
Aug 2, 2007
9:32 pm
2641
Hello, I've got a datagrid that I load XML data into. I've successfully added a checkbox in one of the columns. I've also successfully added a numeric...
phdcpe01
Offline Send Email
Aug 2, 2007
10:04 pm
2642
Hello, I've got a datagrid that I load XML data into. I've successfully added a checkbox in one of the columns. I've also successfully added a numeric...
phdcpe01
Offline Send Email
Aug 2, 2007
10:07 pm
2643
You just need to loop over the dataProvider and inspect the checkbox property. If true, then do your work. If your itemRenderer is not updating a property in...
Tracy Spratt
nts333rd
Offline Send Email
Aug 2, 2007
11:49 pm
2644
I think what he is referring to is that within the Adobe Framework it is standard practice to declare event handlers in a component as private. When you (as a...
reflexactions
Offline Send Email
Aug 3, 2007
2:54 am
2645
Just wondering what sure fired way there is for a component to know its been added as the child of something (a UIComponent, a DisplayContainer)? parentChanged...
reflexactions
Offline Send Email
Aug 3, 2007
5:49 am
2646
UIComponent has an "add" event that is dispatched when it is added to a Container. - Gordon ________________________________ From:...
Gordon Smith
gsmithsf
Offline Send Email
Aug 3, 2007
6:17 am
2647
There is an "add" event but I think this only gets fired if your are attaching to a Container not a UIComponent. There is an "added" event however the...
reflexactions
Offline Send Email
Aug 3, 2007
6:23 am
2648
I may be missing the point, and if I am am, then sorry in advance. createChildren should only be called once it is actually added to a displayList. So couldn't...
Michael Labriola
malabriola
Offline Send Email
Aug 3, 2007
12:33 pm
2650
Well I think the answer is that statement is not completely accurate. createChildren stems from the call to initialize, however initialize is not called...
reflexactions
Offline Send Email
Aug 3, 2007
12:57 pm
2651
Hi, No, the initialize property is set in LayoutManager. When the updateComplete queue runs, if the object is not initialized AND the instance has processed...
Michael Schmalle
teotigraphix
Offline Send Email
Aug 3, 2007
1:51 pm
2652
Hello every body... i'm doing a huge webportal and in this portal users can insert text in content of webportal. In interface i'm make all text of site is...
Daniel Lopes
danielvlopes
Offline Send Email
Aug 3, 2007
7:04 pm
2653
HTML formated text should go in the Text.htmlText property. Note: htmlText supports only a small subset of html markup. There is a RichTextEditor component...
Tracy Spratt
nts333rd
Offline Send Email
Aug 3, 2007
9:18 pm
2654
Thanks Tracy ... -- www.areacriacoes.com.br...
Daniel Lopes
danielvlopes
Offline Send Email
Aug 3, 2007
10:57 pm
2655
Hello... Now i'm doing a state where user can select one letter to make the search, i using button bar with all letters and user can select one of this letters...
Daniel Lopes
danielvlopes
Offline Send Email
Aug 3, 2007
11:01 pm
2656
I make the checkbox the renderer, turn rendererIsEditor=false, and add a change event handler that updates the data. ________________________________ From:...
Alex Harui
alex_harui
Offline Send Email
Aug 4, 2007
6:13 am
2657
Hello, I've got two datagrids, myGrid1 and myGrid2. Basically, the user can select a row in myGrid1, and it'll show up in myGrid2. I am using an ...
phdcpe01
Offline Send Email
Aug 4, 2007
6:37 pm
2658
Are you using the ArrayCollection API to update it? This should cause the DG to update automatically. Tracy ... From: flexcomponents@yahoogroups.com ...
Tracy Spratt
nts333rd
Offline Send Email
Aug 4, 2007
6:50 pm
2659
Check out this post, it should help. http://www.dgrigg.com/post.cfm/10/20/2006/Flex-ItemRenderer-CheckBox- Sample Search the archives, there are a few others...
Derrick Grigg
derrickgrigg
Offline Send Email
Aug 4, 2007
11:19 pm
2660
I'm sorry. I tried to delete this question. I found the answer shortly after I posted it. I thought it deleted....
phdcpe01
Offline Send Email
Aug 5, 2007
2:02 am
2661
I do call arraycollection.refresh() afterwards. However, the DG only updates when you click the panel that contains it, instead of immediately. ... cause ... ...
phdcpe01
Offline Send Email
Aug 5, 2007
2:03 am
2662
I think you want itemUpdated() ________________________________ From: flexcomponents@yahoogroups.com [mailto:flexcomponents@yahoogroups.com] On Behalf Of...
Alex Harui
alex_harui
Offline Send Email
Aug 5, 2007
2:17 am
2663
Dude, you are thinking way to little about this... :) "...override childAdded()..." childAdded is a method on the containing UIComponent NOT on the child being...
reflexactions
Offline Send Email
Aug 5, 2007
2:34 am
Messages 2633 - 2663 of 3885   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help