Re: [flexcoders] Need help with components.

2005-08-05 Thread joe . g . james
Never mind I got it. Thanks a lot. CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above, and contain information that may be confidential or privileged. If you are not an intended recipient, you must not read, copy,

Re: [flexcoders] Re: Datagrid columns resize

2005-09-12 Thread joe . g . james
Thank you, that's perfect. Would you be able to tell me the correct syntax to get compute the colums in the datagrid? thanks CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above, and contain information that may be

Re: [flexcoders] Re: Datagrid columns resize

2005-09-13 Thread joe . g . james
I have a data grid with three columns. NAME AGE and WEIGHT. I want to be able to get the total of the age and weight columns and place them in the bottom row which you showed me how to do previously. Thanks. ?xml version=1.0? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml

RE: [flexcoders] date sort

2005-10-07 Thread joe . g . james
Ya I have tried that but from I understand that only work when the date is from cell renderer. Mine is coming from a java object and is using label to format it. CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above,

RE: [flexcoders] Newie : calling a function when setting selected index

2006-11-27 Thread joe . g . james
Sorry for my lack of detail. When I use AS3 to set the selected index of a datagrid can it call a function the same way that I would if I used a click event? Joe James Work: (562) 658-3670 Tie Line: 8-320-3670 CONFIDENTIALITY STATEMENT - This message and any files or text attached to it

RE: [flexcoders] Newie : calling a function when setting selected index

2006-11-27 Thread joe . g . james
I was able to use the updateComplete=callFunction() . Thanks. Joe James Work: (562) 658-3670 Tie Line: 8-320-3670 CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above, and contain information that may be confidential

Re: [flexcoders] Shuffle items in Repeater

2006-12-12 Thread joe . g . james
That's what I needed. Thank you ! Joe James Work: (562) 658-3670 Tie Line: 8-320-3670 CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above, and contain information that may be confidential or privileged. If you are

RE: [flexcoders] Embed HTML in Flex

2006-12-14 Thread joe . g . james
I have tried all browsers. This error is getting thrown. What exactly is the ExternalInterface.available looking for. I have read through the ExternalInterface API. I am lost !!! public function set source(source: String): void { if (source) {

Re: [flexcoders] Toggle items in an Array collection

2007-01-05 Thread joe . g . james
Thanks. That works perfect ! Joe James Work: (562) 658-3670 Tie Line: 8-320-3670 CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above, and contain information that may be confidential or privileged. If you are not an

Re: [flexcoders] Question with mx:Tile

2007-01-15 Thread joe . g . james
or saving them. Thank you. Joe G James/CA/[EMAIL PROTECTED] Sent by: flexcoders@yahoogroups.com 01/15/2007 04:06 PM Please respond to flexcoders@yahoogroups.com To flexcoders@yahoogroups.com cc Subject [flexcoders] Question with mx:Tile It has a vertical display. The repeater is formated so

RE: [flexcoders] Change style on repeater item

2007-01-19 Thread joe . g . james
Thanks ! Joe James Work: (562) 658-3670 Tie Line: 8-320-3670 CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above, and contain information that may be confidential or privileged. If you are not an intended

Re: [flexcoders] Change style on repeater item

2007-01-22 Thread joe . g . james
This does work. Thanks for the solutions! private function changeStyle(event:Event,action:Object):void{ var vbox:VBox = event.currentTarget as VBox; if (action=='over'){ vbox.styleName='resultsov' } else{ vbox.styleName='results' } } mx:Repeater id=empResults horizontalCenter=1

Re: [flexcoders] Re: Data grid with check box... How to get value

2005-06-23 Thread joe . g . james
The data grid is populated from a data provider. It displays about 20 rows. When I click on one of the check box I would like to be able to get a value from one of the cells in that row. The data grid is a MXML component and the check box is from a cell rendering action scripting file.

Re: [flexcoders] Sort data grid that has a check box cell renderer

2005-06-24 Thread joe . g . james
I do not have the code. I am doing research for some body else. I do know that the data provider is a java object. Some on else asked me if I was updated the data provider when the check box was checked. That is not happening. Nothing is transactional until the submit button hit.

RE: [flexcoders] How do I bound XML data into an array that is mydataprovider for a data grid

2005-07-08 Thread joe . g . james
No I am not. How do I use that function? CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above, and contain information that may be confidential or privileged. If you are not an intended recipient, you must not read,

RE: [flexcoders] Can someone please explain to me why I can not get mycombo boxes to sort in my

2005-07-13 Thread joe . g . james
Thank you, that works great ! CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above, and contain information that may be confidential or privileged. If you are not an intended recipient, you must not read, copy, use,

RE: [flexcoders] call a function from a pop up title window.

2008-03-27 Thread joe . g . james
Thanks , that was helpful. I am still looking to dispatch an event from a title window. The mypopup.addEventListener does not seem to recognize the event being dispatched from the title window. I'm not sure if this matters, but the event is being dispatched when I get results back from a

Re: [flexcoders] Re: linkBar labelFunction

2009-03-26 Thread joe . g . james
Thanks, but I would like to be able to update the field name. mx:LinkBar id=roles_nav dataProvider={grouproles} labelField=ROLE ex : ROLE = Group Administrator labelFunction return Manage Employees ROLE = Group Presenter labelFunction return Manage Presentations Joe James

Re: [flexcoders] getItemIndex ......returning -1

2009-04-26 Thread joe . g . james
Thank you, but for some reason the index variable is providing me with a -1 value, so the if statement is never true. var index:int = -1; for (var i:int = 0; index courses.length; index++) { -1 if (courses.getItemAt(index).TITLE == specific course name) { index =

Re: [flexcoders] change datagrid rowHeight on rollover

2010-07-30 Thread joe . g . james
Correct. I can accomplish that with the following override protected function updateDisplayList(w:Number,h:Number):void { var dg:DataGrid = DataGrid(listData.owner); if (dg.isItemHighlighted(data) ||

[flexcoders] Joe G James is out of the office.

2011-12-19 Thread joe . g . james
I will be out of the office starting 12/19/2011 and will not return until 01/02/2012. I will respond to your message when I return.

[flexcoders] Joe G James is out of the office.

2012-03-05 Thread joe . g . james
I will be out of the office starting 03/02/2012 and will not return until 03/07/2012. I will respond to your message when I return.

[flexcoders] Joe G James is out of the office.

2012-09-17 Thread joe . g . james
I will be out of the office starting 09/17/2012 and will not return until 09/24/2012. I will respond to your message when I return.

[flexcoders] Joe G James is out of the office.

2012-11-19 Thread joe . g . james
I will be out of the office starting 11/19/2012 and will not return until 11/26/2012. I will respond to your message when I return.

[flexcoders] Joe G James is out of the office.

2012-12-18 Thread joe . g . james
I will be out of the office starting 12/18/2012 and will not return until 01/02/2013. I will respond to your message when I return.