[flexcoders] Get the selected column of a dataGrid

2006-02-02 Thread Jason Doyle
I have been trying to get the column index or name of a selected column in a dataGrid. I have tried: dataGridName.getCellIndex().columnIndex and event.target.getCellIndex().columnIndex in a change event but that doesnt work. Any ideas? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/gr

[flexcoders] Reusable CellRenderer

2006-01-31 Thread Jason Doyle
I would like to create a reusable cellRenderer that I can use on multiple columns in a dataGrid. But I am having a hrad time wrapping my brain around it. First, how would you call the same cellRenderer for each column but populate it with different data for each? I have tried to assign the cellR

[flexcoders] View Directory Tree

2006-01-20 Thread Jason Doyle
I am wanting to create a view into a directory on a server. Can someone point me in the right direction. I have no idea how to do this. Thanks. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcode

[flexcoders] Pass array to CFC through Web Service

2005-12-22 Thread Jason Doyle
Has anyone got this to work? I have been on this forever and cannto figure it out... I am creating an array of objects like this. The target is a row from a datagrid being dragged onto another grid. for(var i = 0; i But I get this Axis error when I try to update the record: soapenv:Server

[flexcoders] Re: XMLObjectOutput

2005-12-21 Thread Jason Doyle
That is exactly what I forgot. Thanks! Yahoo! Groups Sponsor ~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/KIlPFB/vlQLAA/TtwFAA/nhFolB/TM --

[flexcoders] XMLObjectOutput

2005-12-21 Thread Jason Doyle
I was trying to implement the XMLObjectOutput but am getting this error: "The class being compiled, 'XMLObjectOutput', does not match the class that was imported, 'com.thomson.ppc.utils.XMLObjectOutput'. " //At the top of my page I am importing the class import com.ppc.utils.XMLObjectOutput; //An

[flexcoders] Re: SOAP error

2005-12-15 Thread Jason Doyle
Ok, I think my error lies in my array. If I pass a simple array it works, but as soon as I pass an array of objects, it breaks. Could it me a mal formed array? Here is how I am createing my array of objects: aAssignments = new Array(); for(var i = 0; i Most low income

[flexcoders] Re: SOAP error

2005-12-14 Thread Jason Doyle
You are correct in your assessment. My problem is that even though I explicity set the type of aAssignments to "array" or "struct" in the CFC, it still interprets it as "anyType" in the WSDl. I am not sure what other types to try in the CFC. Yahoo! Groups Sponsor

[flexcoders] Re: SOAP error

2005-12-14 Thread Jason Doyle
An arrary of objects... Here is the parameter: Parameter 1: name : aAssignments type : anyType value[array] : length[Number] : 3 [0][object] : NUMASSIGNMENTID[Number] : 2685 NUMLEVELOFEFFORT[Number] : 0 NUMPERSONNELID[Number] : 2563 NUMPROJECTID[Number] : 4 TXTPROJECTNAME[String] : Projec

[flexcoders] SOAP error

2005-12-14 Thread Jason Doyle
I am trying to pass an array to a CFC using web services. I am getting a SOAP error stating that there is no deserializer for type of "anytype" even though I am specifying that the type is "Array." I have also tried "Struct." Does anyone know what types there are deserializers for? Flex 1.5 CFMX 7

[flexcoders] Re: List box event

2005-11-21 Thread Jason Doyle
Nope, Flex 1.5. thank though :) Yahoo! Groups Sponsor ~--> Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/nhFolB/TM -

[flexcoders] Re: List box event

2005-11-20 Thread Jason Doyle
Hmm, very strange. I wonder if it is because my list box is being created by a repeater. Or becaue drag is enabled on it? here's my code... http://www.macromedia.com/2003/mxml"; xmlns:ppcView="com.ppc.stickies.view.*" width="720" height="590" backgroundColor="#6

[flexcoders] List box event

2005-11-19 Thread Jason Doyle
I am trying to fire off an event when the user mouses over an item in a list box. Both mouseOver and itemRollOver fire the events anytime the mouse enters the list box, even over whitespace. Any ideas how to get it to fire off only over list box items? And capture the index of that item? I really t