[flexcoders] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Parekh, Shweta - BLS CTR
Title: Problem with repeater and datagrid -- Please help! Hi, I have a problem with repeater and datagrids. I have a repeater in ItemSpec.mxml file (below) which includes an mxml component: itemSpecInfo. File:  itemSpec.mxml        …...      ItemSpecInfo.mxml has a

Re: [flexcoders] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Manish Jethani
On 10/14/05, Parekh, Shweta - BLS CTR <[EMAIL PROTECTED]> wrote: > 1. Are there global variables in Flex so that I can take the result from > remote call in a global variable and then use it anywhere -- in my case in > the child component? You can save the result in the application and then refer

RE: [flexcoders] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Mink, Joseph
(StaticClass.theValue == something) ...   Does that help? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish JethaniSent: Friday, October 14, 2005 12:27 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Problem with repeater and datagrid -- Please help! On 10

RE: [flexcoders] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Parekh, Shweta - BLS CTR
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mink, JosephSent: Friday, October 14, 2005 1:18 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Problem with repeater and datagrid -- Please help! Or you can create a static actionscript class with a private member

RE: [flexcoders] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Tracy Spratt
@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mink, Joseph Sent: Friday, October 14, 2005 1:18 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Problem with repeater and datagrid -- Please help! Or you can create a static actionscript class with a private member.  Set

Re: [flexcoders] Problem with repeater and datagrid -- Please help!

2005-10-14 Thread Manish Jethani
On 10/14/05, Parekh, Shweta - BLS CTR <[EMAIL PROTECTED]> wrote: > So then two mxml files will be accessing the same actionscript. In one mxml, > the member is set and the other mxml accesses the member. That might work > for me. But can two mxml files access the same actionscript? This is the st