[flexcoders] DataGrid Click Event

2008-04-27 Thread Lisa Lee
I have assigned a function to the click event on my DataGrid. When the user clicks on the DataGrid, how can I tell whether they've clicked on the header (for instance, to sort the data) or on actual data in the grid itself?

[flexcoders] Re: DataGrid Click Event

2008-04-27 Thread Lisa Lee
for the 'headerRelease' event for the header clicks. Hope this helps, ~Aaron On Sun, Apr 27, 2008 at 4:14 PM, Lisa Lee [EMAIL PROTECTED] wrote: I have assigned a function to the click event on my DataGrid. When the user clicks on the DataGrid, how can I tell whether they've clicked

[flexcoders] Copying an Object

2008-04-24 Thread Lisa Lee
I'm sort of a newbie to Flex/ActionScript...can someone tell me the best way to copy an object to a new variable? For example, I have a variable named obj1, datatyped as Object. Let's say that I've set obj1.property1 = foo and obj1.property2 = bar. Now I declare a variable named obj2,

[flexcoders] Re: Copying an Object

2008-04-24 Thread Lisa Lee
Awesome! That seems to be exactly what I was looking for. Thanks Peter - you rock! :-) --- In flexcoders@yahoogroups.com, Peter Connolly [EMAIL PROTECTED] wrote: Take a look at the copy() method in ObjectUtil: http://livedocs.adobe.com/flex/2/langref/mx/utils/ObjectUtil.html#copy ()

[flexcoders] Preventing User Action While Waiting for Page to Update

2007-05-09 Thread Lisa Lee
Hi - another newbie question, I'm sure but here goes: I have a Flex app that allow the user to drag and drop an item from one box to another. Once they drop the item, both boxes refresh with the correct data. Sometimes it can take a few seconds for the boxes to refresh. In the meantime, if

[flexcoders] URL Link in Flex Application

2007-02-23 Thread Lisa Lee
Can you tell me how to be able to have a user click on a link (button, whatever) from within a Flex application and have it take the user to a non-Flex, regular web page within their browser? It's probably a simple answer but I'm still getting up to speed with Flex. Thanks!

[flexcoders] Re: Populating List with Data From Web Service

2007-01-18 Thread Lisa Lee
return the query itself without making an array to send back. On 1/17/07, Lisa Lee [EMAIL PROTECTED] wrote: Hi, I have a list that I want to populate with data from a CFC, but all I get with my current code is a list with every row reading '[object Object]' instead of actual

[flexcoders] Re: Populating List with Data From Web Service

2007-01-18 Thread Lisa Lee
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lisa Lee Sent: Thursday, January 18, 2007 3:45 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Populating List with Data From Web Service Thanks very much for the info, Clint. If I return a query

[flexcoders] Multiple Selections in a List

2007-01-05 Thread Lisa Lee
I hate asking what I think is probably a very stupid question, but being so new to Flex, I am still quite wet behind the earsI have an mx:List and I have set the allowMultipleSelection property to true...my question is, how do I determine what selection(s) the user has selected, if they're

[flexcoders] How to Use the Value of a Checkbox in a Component

2006-12-27 Thread Lisa Lee
Hello, I'm very new to Flex so please excuse my newbie question if it seems a bit dumb...but here is my situation: I have a Flex application - let's call the main application file 'Main.mxml' - I have a component file - let's call it 'MyComp.mxml'. Within the 'MyComp.mxml' file I have an