[flexcoders] show data tips not working for datagrid

2007-02-23 Thread Cashorali, Tanya M.
I'm trying to get a certain field to show up because it is clipped by the cell in my datagrid. I've set showDataTips = 'true' in the datagrid column that I want to show. I've also set a dataTipFunction = showDetails on the datagrid itself and for the column. The function looks like this:

[flexcoders] help with httpservice result as dataprovider for datagrid

2007-02-20 Thread Cashorali, Tanya M.
I have a datagrid whose dataprovider is this: mx:XMLListCollection id = experiments filterFunction=filter2 source={display_experiments.lastResult.experiment}/ I want to be able to double click on a row in the dg, which opens a pop-up window where I can edit information and then update it.

[flexcoders] convert e4x xml results to arraycollection or xmllistcollection

2007-02-13 Thread Cashorali, Tanya M.
I want to filter the results (which are in e4x format) of an HTTPService call (display_samples) and push certain ones into a new arrayCollection. This code populates a Tree just fine: mx:XMLListCollection id = all_samples source={display_samples.lastResult.sample}/ But when I do this:

RE: [flexcoders] convert e4x xml results to arraycollection or xmllistcollection

2007-02-13 Thread Cashorali, Tanya M.
(item:Object):Boolean { return [EMAIL PROTECTED] == complete; } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cashorali, Tanya M. Sent: Tuesday, February 13, 2007 11:47 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] HTTPService updating database too frequently??

2007-02-12 Thread Cashorali, Tanya M.
I have datagrids whose dataproviders are the lastResult of httpservice calls. The HTTPService calls are calling PHP scripts that update, remove, and create rows. I have a function that lets me double click an item in a datagrid and pop up a window which then lets me edit the info. The only

[flexcoders] Problem populating datagrid after state change, need a Repeater maybe?

2007-02-09 Thread Cashorali, Tanya M.
I have a form collecting data about an experiment. There's a numeric stepper that specifies number of repeated experiments there will be. Once the user enters all the data and presses submit, there's a state change triggered if the numeric stepper value is 1. I'd like the data from the form

RE: [flexcoders] detect XML node on click in Tree

2007-02-07 Thread Cashorali, Tanya M.
Thank you! Worked like a charm. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Tuesday, February 06, 2007 1:57 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] detect XML node on click in Tree

[flexcoders] Can editable row in datagrid depend on what node clicked in tree?

2007-02-06 Thread Cashorali, Tanya M.
Now that I can determine what type of node was clicked in a tree (thank you Tracy!), I'd like to be able to edit that entity as well.. but in a separate datagrid. Right now, I have the viewStack selectedChild updating depending on what node was clicked. Is it possible to now initiate an

RE: [flexcoders] Re: Why does it fail when only 1 item in the result xml (HTTPservice)

2007-02-05 Thread Cashorali, Tanya M.
Try: if (event.result.action.item is ObjectProxy ) I had to do the same thing to fix the 1 xml node problem. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of oneproofdk Sent: Monday, February 05, 2007 1:39 PM To:

[flexcoders] Custom components and handling variables

2007-02-01 Thread Cashorali, Tanya M.
I'm still learning how I should be designing custom components and encapsulating methods/variables appropriately. I have a custom component that pops up and just adds/removes items from two arraycollections. After this is done, I'd like to close it and reflect the changes on the main

RE: [flexcoders] Binding HTTPService xml to ArrayCollection for Datagrid

2007-01-31 Thread Cashorali, Tanya M.
way? Thanks, Tanya From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cashorali, Tanya M. Sent: Tuesday, January 30, 2007 4:58 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Binding HTTPService xml

RE: [flexcoders] Binding HTTPService xml to ArrayCollection for Datagrid

2007-01-31 Thread Cashorali, Tanya M.
, then you need to use (event.result.expirements) b. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cashorali, Tanya M. Sent: Wednesday, January 31, 2007 8:32 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders

RE: [flexcoders] Binding HTTPService xml to ArrayCollection for Datagrid

2007-01-31 Thread Cashorali, Tanya M.
[mailto:[EMAIL PROTECTED] On Behalf Of Cashorali, Tanya M. Sent: Wednesday, January 31, 2007 8:32 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Binding HTTPService xml to ArrayCollection for Datagrid The problem is related to the format of the XML I think. Here's a portion of my php

RE: [flexcoders] Binding HTTPService xml to ArrayCollection for Datagrid

2007-01-31 Thread Cashorali, Tanya M.
like it should be simple. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cashorali, Tanya M. Sent: Wednesday, January 31, 2007 12:36 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Binding HTTPService xml to ArrayCollection

[flexcoders] Binding HTTPService xml to ArrayCollection for Datagrid

2007-01-30 Thread Cashorali, Tanya M.
I have followed the example exactly as Adobe's book shows in Lesson 12 (Dragging and Dropping Between Two Datagrids) with no luck. I need to be able to bind the results of an HTTPService call (which executes a php script and returns rows in XML format), to an ArrayCollection or whatever

RE: [flexcoders] Binding HTTPService xml to ArrayCollection for Datagrid

2007-01-30 Thread Cashorali, Tanya M.
PROTECTED] On Behalf Of Cashorali, Tanya M. Sent: Tuesday, January 30, 2007 4:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Binding HTTPService xml to ArrayCollection for Datagrid I have followed the example exactly as Adobe's book shows in Lesson 12 (Dragging and Dropping Between Two

[flexcoders] multiple click actions

2007-01-24 Thread Cashorali, Tanya M.
I have a view stack which changes views based on whatever button is clicked on an application control bar... mx:Button id = myProjects label=My Projects click=myViewStack.selectedChild=projects; / As soon as you click 'myProjects' the view changes to a datagrid. But I also want to

RE: [flexcoders] multiple click actions

2007-01-24 Thread Cashorali, Tanya M.
Ok I ended up just using a creationComplete = refreshProjects(); in the datagrid tag. Thanks anyway! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cashorali, Tanya M. Sent: Wednesday, January 24, 2007 3:29 PM To: flexcoders

RE: [flexcoders] multiple file upload and php problems

2007-01-19 Thread Cashorali, Tanya M.
Yes, I fixed the problem.. I just had to find where in the flex the name of the uploaded file was. Now I'm trying to upload files to a remote server, but I think I will need to pass login credentials to it as well. Any tips on this? Thank you -Original Message- From: