[flexcoders] Custom components and Flex Builder Design view

2006-09-26 Thread jpwarmer
Hi all, i have a couple of questions... 1.- Does anyone knows how to add custom containers into the insert pane that Navigators (ViewStack, TabNavigator, etc) shows in the FlexBuilder Design view (when plus icon clicked)?? 2.- When a DataGrid is added to a mxml file using the design view,

[flexcoders] Getting classes by name

2006-07-04 Thread jpwarmer
is there some way to obtain an ActionScript Class by name??? Something similar to Java Class.byName(myPackage.MyClass)??? Yahoo! Groups Sponsor ~-- Something is new at Yahoo! Groups. Check out the enhanced email design.

[flexcoders] DataGrid sortCompareFunction, is this a bug???

2006-06-13 Thread jpwarmer
Hi All, In Flex 1.5, if you want to use a custom sort for columns in dataGrid you could pass a function to the colunm. That function need to have the following signature: mySortCompareFunction(obj1 : Object, obj2 : Object, columnIndex : Number) : Number In this case, Flex will pass into obj1

[flexcoders] Popup parameters un flex 2

2006-06-13 Thread jpwarmer
How can i pass parameters to a popup in flex 2?? This does not work... var ref:Object = PopUpForms(PopUpManager.createPopUp(this, PopUpForms, true)); ref.id = id; ref.serviceName = action; Yahoo! Groups Sponsor ~-- Get to your groups with

[flexcoders] Re: DataGrid sortCompareFunction, is this a bug???

2006-06-13 Thread jpwarmer
the two objects. This is not that elegant of a solution, but seems to be working for me. If there is a better way to do this, I am all ears. --- In flexcoders@yahoogroups.com, jpwarmer jpwarmer@ wrote: Hi All, In Flex 1.5, if you want to use a custom sort for columns in dataGrid

[flexcoders] Re: Popup parameters un flex 2

2006-06-13 Thread jpwarmer
, Mike On 6/13/06, jpwarmer [EMAIL PROTECTED] wrote: How can i pass parameters to a popup in flex 2?? This does not work... var ref:Object = PopUpForms(PopUpManager.createPopUp(this, PopUpForms, true)); ref.id = id; ref.serviceName = action; -- What goes up, does

[flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread jpwarmer
Hi, i did something like that with the Panel Class, let me tell you what I did... I extend the Panel class an add a few instance variables (the image for the controls) mx_internal var minimizeButton:Image; mx_internal var maximizeButton:Image; mx_internal var

[flexcoders] ItemRenderer and Events

2006-06-09 Thread jpwarmer
Hi, I got a DataGrid with an ImageItemRenderer (that`s a custom component that shows an image on the cell). I want to dispatch an event when users click on the image. How can I do that??? TIA, JP Yahoo! Groups Sponsor ~-- You can search

[flexcoders] Re: ItemRenderer and Events

2006-06-09 Thread jpwarmer
(): _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jpwarmer Sent: Friday, June 09, 2006 11:01 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ItemRenderer and Events Hi, I got a DataGrid with an ImageItemRenderer (that`s a custom component that shows

[flexcoders] Re: stupid question, CSS and XML

2006-06-09 Thread jpwarmer
I believe the error is because of the accent...you should use desc![CDATA[ And.. You could try passing text to the htmlText attribute on the text area --- In flexcoders@yahoogroups.com, tonyx_788 [EMAIL PROTECTED] wrote: Hi, anyone knows how i can make a specific text (in a textarea) bold