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...
Title: Senior Flex Developer Job Qualifications: - Must be a seasoned senior developer with Flex component experience - Has extensive knowledge of the Flex...
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...
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...
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,...
... 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...
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...
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...
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...
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...
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...
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...
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...
Well I think the answer is that statement is not completely accurate. createChildren stems from the call to initialize, however initialize is not called...
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...
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...
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...
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...
I make the checkbox the renderer, turn rendererIsEditor=false, and add a change event handler that updates the data. ________________________________ From:...
Are you using the ArrayCollection API to update it? This should cause the DG to update automatically. Tracy ... From: flexcomponents@yahoogroups.com ...
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...
I do call arraycollection.refresh() afterwards. However, the DG only updates when you click the panel that contains it, instead of immediately. ... cause ... ...
I think you want itemUpdated() ________________________________ From: flexcomponents@yahoogroups.com [mailto:flexcomponents@yahoogroups.com] On Behalf Of...
Dude, you are thinking way to little about this... :) "...override childAdded()..." childAdded is a method on the containing UIComponent NOT on the child being...