Try the measureText function. Multplying by 10 is probably overkill. What else is in the HBox with the DG? Maybe you don't want a hscrollbar there. ...
Hi all I'm just relaying this message from http://www.bytearray.org This issue realy needs to bee pointed out for adobe so we can create the best RIA. Here is...
In case anyone is interested, the beta of Degrafa was released yesterday. If you're not familiar wit Degrafa, it's a declarative graphics framework for Flex...
I have Tab Navigation with multiple Tabs. Each tabs is dynamic DG. But only in first tab DG looks like I set, in all other tabs col with is random! but same...
Here is the piece of code: Which generates 3 tabs with DG within, problem is 2 hidden tabs ignores sizes I set. Is there any way to set properly column sizes? ...
When Application starts, sizes of DGs is set. After cycle Collapse->Expand, all sizes are messed up. <?xml version="1.0" encoding="utf-8"?> <mx:Application...
What's happening is that the second and third panels don't get sized right away and they size the DG to something small which squishes the columns. Try...
... Thank you Alex for response. I does looks like second and third was newer set to requested width. What I see any DG component,which not displayed, ignores...
Another option is to add the DGs in the other panels after creationComplete on the TabNav so you know what sizes to use. As far as scaling goes, you might want...
Sorry Bart, i was in vacation and can't answer your email, the adress is www.areacriacoes.com.br/projetos/flex/menuvertical2.zip ... -- Daniel Lopes - Area...
Hi all, The scenario is like this: I have one class which extends the Panel class. I create it's instance in an mxml file. I have one more class which extends...
Please post some of your code. ________________________________ From: flexcomponents@yahoogroups.com [mailto:flexcomponents@yahoogroups.com] On Behalf Of...
Any idea what and why I get this error. "Main Thread(Suspended: VerifyError: Error #1030: Stack depth is unbalanced. 1!=0.) This occurs in a custom item...
Personally I don't see anything wrong here. This code suppose to work with no errors. May be overrided methods withing one of them make runtime error? ... ...
Maybe you're doing something funky in createChildren? Are you getting a compile error or runtime error. If runtime, what is the full stack trace? If...
Is there a way in a custom column component to detect when the parent grids dataProvider is set or changed, and also detect when the column is added to a grid?...
If data provider is changed (set) column renderer's property data should be set (dataChange property event fired). Item renderer as I see it shouldn't know of...
This is not a custom renderer... Its a custom column...... i.e. A DataGridColumn and AdvancedDataGridColumn subclass and it needs to know about all the column...
... Not sure about the first question, but the second one - remember that createChildren() will be called on the column object when it is added to a parent. e...
I get a run time error: The stack trace is: TypeError: Error #1034: Type Coercion failed: cannot convert ms.chatmodule.view::MemberViewList@8d2a331 to...
Hi all, Is there any way in which I get the caller function name. As in : class Aclass{ instanceB:Bclass; function a(){ instanceB.b(this) } } class Bclass{ ...
Grid Columns dont have a creationComplete event unfortunately.. and I think dataChange doesnt fire when the grids dataProvider is set. I think its not possible...
You can do this, but you will either need to extend datagrid or do a bunch of stuff external to the class. My approach would be an extension. I would override...
That is not possible. -Josh learner wrote: Hi all, Is there any way in which I get the caller function name. As in : class Aclass{ instanceB:Bclass; function...