[flexcoders] Flex 3.3 SDK and AdvancedDataGrid

2009-03-03 Thread Troy A. Binford
Hi, I updated to 3.3 today and now AdvancedDataGrid is not found. Is there something I am missing? Thanks.

[flexcoders] Re: Custom itemrenderer in datagrid

2008-11-27 Thread Troy A. Binford
Come on people. It is as simple as this - Seeing that the original question is quite old. I help this helps out anyone with a similar problem. this.data[(this.listData as DataGridListData).dataField]; Problem solved. --- In flexcoders@yahoogroups.com, B.Brey [EMAIL PROTECTED] wrote: I've

Re: [flexcoders] DataGrid - ItemRenderer BUG on scrolling.

2007-06-06 Thread Troy A. Binford
I had a similar problem like this. Before the if statement where you are checking if the value is not null, set this.text to . This has worked for me in the past so give it a shot. Regards, Troy On 6/6/07, alom17959 [EMAIL PROTECTED] wrote: Hi, Im Aldo, and i appreciate ur help guys !.

[flexcoders] setClipboard: Storing tabled data

2007-06-06 Thread Troy A. Binford
Greetings, I have a DataGrid that I want to copy and paste into Word. I would like Word to be able to display the DataGrid as a table not just tab-separated data. I know that you can copy tables off Internet and paste them into Word (or even WordPad) and they will preserve their formatting. I

[flexcoders] Re: Vertial Scroll Issue with Using Date Field ItemRenderer in a DataGrid

2007-05-23 Thread Troy A. Binford
] wrote: Should be fixed in the latest hotfix. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy A. Binford Sent: Friday, May 18, 2007 10:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Vertial Scroll Issue

[flexcoders] Re: Vertial Scroll Issue with Using Date Field ItemRenderer in a DataGrid

2007-05-23 Thread Troy A. Binford
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy A. Binford Sent: Wednesday, May 23, 2007 11:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Vertial Scroll Issue with Using Date Field ItemRenderer in a DataGrid I just got done installing the hotfix. While

[flexcoders] Vertial Scroll Issue with Using Date Field ItemRenderer in a DataGrid

2007-05-18 Thread Troy A. Binford
Hi folks, This is a weird bug and I hope someone can help me with it. In my example code (DateRendererWTF.mxml being the main app and OMGRenderer.mxml being the renderer), everything initially scrolls fine. Then choose a date for any one of the datefields. Now move your mouse down and up so that

[flexcoders] Re: Unable to flush SharedObject

2007-05-17 Thread Troy A. Binford
Player\#SharedObjects\some random dir name Did you delete the some random dir name directory completely? Or only the directories inside it? Prayank --- In flexcoders@yahoogroups.com, Troy A. Binford troy.binford@ wrote: Yesterday I cleared out all the shared objects in my Application

[flexcoders] Re: Unable to flush SharedObject

2007-05-17 Thread Troy A. Binford
though any app ran locally has permission to by default. --- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote: You might try re-installing Flash ... that should re-create the Shared Objects folder for you ... -- Jake Troy A. Binford [EMAIL PROTECTED] wrote: I cleared out

[flexcoders] Unable to flush SharedObject

2007-05-15 Thread Troy A. Binford
Yesterday I cleared out all the shared objects in my Application Data directory. Since then, I cannot write shared objects anymore. Did I perhaps delete a permission setting for flash to write to my local drive? I initially thought it may be a problem with a change in the application I am writing,

[flexcoders] Re: TextInput Ignoring CursorManager.set()

2007-05-01 Thread Troy A. Binford
PROTECTED] On Behalf Of Troy A. Binford Sent: Monday, April 30, 2007 2:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: TextInput Ignoring CursorManager.set() Setting mouseChildren to false gives me the desirable effect, and I can have an event set and unset the boolean

[flexcoders] TextInput Ignoring CursorManager.set()

2007-04-30 Thread Troy A. Binford
Is there a way to stop a TextInput control from displaying its I-bar when I hover over it? I have previously set a custom cursor to display and I would like it to stay the same when it moves over a TextInput control. Thanks, Troy

[flexcoders] Re: TextInput Ignoring CursorManager.set()

2007-04-30 Thread Troy A. Binford
Setting mouseChildren to false gives me the desirable effect, and I can have an event set and unset the boolean. But how about this same issue for a TextField? It does not have a mouseChildren property. Any advice? Thanks, Troy --- In flexcoders@yahoogroups.com, Troy A. Binford [EMAIL PROTECTED

[flexcoders] Re: Alert Control Crashing App

2007-04-27 Thread Troy A. Binford
somewhere or at least a stack trace? That'll make it easier to follow. On 4/25/07, Troy A. Binford troy.binford@ gmail.com wrote: This is a little complex, but I'll try to describe what's going on to the best of my ability. 1. Create

[flexcoders] Re: Alert Control Crashing App

2007-04-26 Thread Troy A. Binford
:33:04 Asunto: Re: [flexcoders] Alert Control Crashing App Perhaps you can post a working example somewhere or at least a stack trace? That'll make it easier to follow. On 4/25/07, Troy A. Binford troy.binford@ gmail.com wrote

[flexcoders] Re: Alert Control Crashing App

2007-04-25 Thread Troy A. Binford
with PopUpManager. The stack trace is large so I'd rather not post it. Thanks, Troy --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: Perhaps you can post a working example somewhere or at least a stack trace? That'll make it easier to follow. On 4/25/07, Troy

[flexcoders] DataGrid: Field Change Event?

2007-04-24 Thread Troy A. Binford
Is there a way I can listen for a change in a specific column's fields and analyze the changed field? I was thinking about creating an Item Renderer and firing an event from there, but I don't really want to lose the default editing behavior of the field. The field's data is bound XML and I

[flexcoders] Re: How to access Variable in Module from sub-component

2007-04-24 Thread Troy A. Binford
If I get your problem straight, you have an App that loads a module. Then that module loads subcomponents, and you want to access a variable that belongs to the module. Have you tried parentDocument.varname? --- In flexcoders@yahoogroups.com, boy_trike [EMAIL PROTECTED] wrote: My Application

[flexcoders] Re: DataGrid: Field Change Event?

2007-04-24 Thread Troy A. Binford
might be looking for the itemEditEnd event. On 4/24/07, Troy A. Binford [EMAIL PROTECTED] wrote: Is there a way I can listen for a change in a specific column's fields and analyze the changed field? I was thinking about creating an Item Renderer and firing an event from there, but I don't

[flexcoders] Alert Control Crashing App

2007-04-24 Thread Troy A. Binford
This is a little complex, but I'll try to describe what's going on to the best of my ability. 1. Create a new Flex Application. 2. Add a Canvas or whatever and give it an id. 3. Create a new Custom Control that is a DataGrid. 4. Make the DataGrid editable and give it a dataProvider and at least