RE: [flexcoders] create-compile-report not creating report

2005-10-26 Thread Kelly Roman










I tried searching for anything with
report.xml and the compile report wasnt there.



Any other thoughts?















From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Roger Gonzalez
Sent: Wednesday, October 26, 2005
3:41 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
create-compile-report not creating report





 i've opened my
flex-config.xml file and set 
 create-compile-report to true but it's not
creating the 
 report... production mode is set to false...
 
 
 any ide why it's not creating the file?
 
 

Try searching for all files named '*-report.xml',
hopefully its just
writing it somewhere unexpected.

-rg








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] create-compile-report not creating report

2005-10-26 Thread Kelly Roman










No it works fine on my other server just
by compiling the app in a browser.



Probably something to do with the environment
its setup in: Tomcat, Linux, Teamsite











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Roger Gonzalez
Sent: Wednesday, October 26, 2005
10:14 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
create-compile-report not creating report





 I tried searching for
anything with report.xml and the 
 compile report wasn't there.
 
 
 
 Any other thoughts?
 

Its possible that the option only works with the
command-line compiler,
mxmlc. Not positive, though. Sorry.

-rg 









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] showing subcateogries on selecteditem

2005-10-24 Thread Kelly Roman










Why make it in xml?



Why not just put it all in a database and
pull it from there.



It is easier to update that way.



Do you know any server side languages?
(ColdFusion, JSP, PHP, etc)



If you plan on using Flex for anything
serious then I suggest learning scripting languages and database design and
management or hire someone that does know them.



Otherwise you probably wont get far.





Sorry I havent been more helpful.



--Kelly

[EMAIL PROTECTED]

www.dekaydmedia.com















From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of pioplacz
Sent: Sunday, October 23, 2005
7:43 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] showing
subcateogries on selecteditem





Hi!

I'm trying to make a tv-series catalog for myself
but i'm having 
some trouble. This it how far i have come: 
http://serenadserver.homeip.net/flex/katalog/tvserier/tvserier.mxml

I'm having some problem to make something like
when u click on the 
series all the episodes will show in the grid. My
problem is I have 
no idea how to make the xml for it or how to make it
in flex could 
you help me? 

Here is my xml: 

?xml version=1.0
encoding=iso-8859-1?
tvserier
 serier

 titleLost/title

 infoFrom J.J. Abrams, the creator of
Alias, and 
Damon Lindelof (Crossing Jordan) comes an
action-packed adventure 
that will bring out the very best and the very
worst in the people 
who are lost. Out of the blackness, the first
thing Jack (Matthew 
Fox, Party of Five) senses is pain. Then burning
sun. A Bamboo 
forest. Smoke. Screams. With a rush comes the
horrible awareness 
that the plane he was... /info
 
 imagehttp://image.com.com/tv/images/processed/thumb/41/fa/1
2304.jpg/image

 episodePilot. Pilot (1)/episode
 /serier
 serier

 titleThe 4400/title

 infoThe 4400 tells the stories of 4,400
abductees 
after they are returned to earth, but they ended
up being abducted 
by people from the future to save mankind. In the
words of the 
executive producers, these are stories of people
dealing with 
traumatic changes, driven by the mystery of what
happened and why. 
Some of them have been affected in mysterious
ways, and some will 
have certain... /info
 
 imagehttp://image.com.com/tv/images/processed/thumb/ea/18/6
001.jpg/image
 /serier
/tvserier

Here is my flex:

?xml version=1.0
encoding=utf-8?
mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml

initialize=mySrv.send()
mx:Script
![CDATA[
var selectedItem;
]]
/mx:Script
mx:HTTPService id=mySrv 
url=""
href="http://192.168.0.200/PHP/tvSerier.xml">http://192.168.0.200/PHP/tvSerier.xml
showBusyCursor=true 
resultFormat=object
contentType=application/xml method=GET
 /mx:HTTPService
mx:Style
source=tvserier_style.css/
 mx:Panel width=462
height=600
 mx:VDividedBox
height=100% width=100%
 
mx:HBox width=100% height=100%
marginTop=5

  mx:TileList id=tvList
width=100% 
height=100% itemWidth=430
itemHeight=156 borderStyle=solid 
borderSides=bottom dataProvider={mySrv.result.tvserier.serier}

change=selectedItem=event.target.selectedItem

cellRenderer=TvThumbnail /

 /mx:HBox
 mx:DataGrid
id=avsnitt height=166 width=100% 
dataProvider={tvList.selectedIndex}
 mx:columns

mx:Array

mx:DataGridColumn headerText=Avsnitt 
columnName=episode /

mx:DataGridColumn headerText=Säsong columnName=id
/

mx:DataGridColumn headerText=Undertexter 
columnName=Undertexter /

/mx:Array

/mx:columns

/mx:DataGrid
 /mx:VDividedBox
 /mx:Panel
/mx:Application











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Me go to MAX alone. you be my friend?

2005-10-14 Thread Kelly Roman










I am down.



Here is my Bio:



Name: Kelly Roman

Age: 24

Nationality: American



Currently:

Building enterprise Flex applications for
the automotive industry (Honda, Mazda, Ford)



Currently on contract but I maintain www.dekaydmedia.com when I have time.







See you there eh.





--Kelly

[EMAIL PROTECTED]

www.dekaydmedia.com

















From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Aldo Bucchi
Sent: Wednesday, October 12, 2005
1:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Me go to MAX
alone. you be my friend?





Hi all,

I will be attending MAX pretty much by myself (
the rest of the group
is going to the experience forum ) so I'd like to
ask openly if anyone
here would like to get in contact before the
meeting so we can get
acquainted ( my interests detailed below ).

Very few of you know me, I have been on this list
since right after it
started ( and flexing since the betas ) but I
barely have time to
write, since Flex is only 20% of my job. Anyway,I
read all I can and I
love this community ( some people here really love
what they do, in
contrast to other J2EE groups! ).
I have finally managed to get more flex into our
customers' minds and
I will soon have more time to invest in this great
technology.

Hope someone gets interested ;)
reach me on this email or skype me (aldo.bucchi)

I mean it. This approach might sound a little
strange but it's a
great chance of meeting interesting people (
ehem.. like myself ) and
I don't want to waste it. You never know what can
come out of it.

---

Bio in a nutshell

- name. Aldo Bucchi
- age: 24
- nationality: Chilean
- years in the biz: 6 paying my bills from it
- currently:
 IT Architect for a Core financial services
company ( AKA we build
stuff that powers banks ).
 Bea specialist ( sub: Bea Portal ).
 Epiphany CRM implementor.
 Project leader in general.
 Usability / Customer Experience advisor ( and
I always try to
involve people from other departments in our
projects: commercial,
marketing, customer service, etc )
 Flex evangelist since mid 2004.
 ... and getting up to date with Bea Aqualogic
and BPEL 4 people.
- English, Spanish, some French

My interests regarding Flex are.
- proven use cases in financial services ( mostly
customer facing )
--- experience design theory
--- simplicity and best practices
--- empiric evidence of customer adaptability ( or
lack thereof )
--- idetifying common problems and bad practices
- new collaborative patterns
--- dashboard / shared applications
- flex + breeze in the enterprise, business
patterns
- streamlining integration of the future Flex
Enterprise Services and
Aqualogic DataServices / Epiphany BIO Layer /
other generic data
layers, BPMs and ESBs.

I am currently evaluating the migration of a
critical customer facing
application in a bank to flex. So I have a lot of
fresh questions on
the subject.

OK, enough promotion, back to work
Thanks for your time,
Aldo

PS. Had to ask ;)

--
: Aldo Bucchi :
mobile (56) 8 429 8300








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Java VO.

2005-10-13 Thread Kelly Roman










Are you making corresponding AS classes to
match your Java VO classes?



If so are you declaring the remoteClass so
that Flex knows which AS classes match which Java VO classes?













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Omar Ramos
Sent: Tuesday, October 11, 2005
9:12 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Java VO.





Hi all,

I have a simple VO class in java and have a service that returns a ArrayList of
that vo. My question is that when I return this list to flex via RemoteObject
Tag (AMF) java or flash seams to put each property of the VO in lowercase. For
example if on the Java VO it had a property of Name and LastName when it gets
to flex is name and lastName. Any way to make it return the VO as it is defined
on the java class? Thanks for any help. 


Omar Ramos
System Developer








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Me go to MAX alone. you be my friend?

2005-10-13 Thread Kelly Roman










I will be there too.



I am also 23 but my birthday is on
Saturday so I will be 24 when I get there.



Hahahaha





I will be in pretty much every Flex
session though.





Weee







See you there



--Kelly

[EMAIL PROTECTED]















From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stanislav Zayarsky
Sent: Thursday, October 13, 2005
3:17 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Me go to
MAX alone. you be my friend?





Hello All,

I will be there too :)

I'm 23 and I'm from Kiev, Ukraine.

Looking forward to see you all there.

Best regards
Stanislav

On 10/12/05, Douglas Knudsen
[EMAIL PROTECTED] wrote:
 Maybe we can write 'FLEXCODERS' on our
badges. Then we can spot each
 other in the halls, in sessions, or stumbling
inline for the free
 refreshments.

 DK

 On 10/12/05, Manish Jethani
[EMAIL PROTECTED] wrote:
  On 10/12/05, Manish Jethani
[EMAIL PROTECTED] wrote:
   Sounds great. I'm coming to
MAX too. BTW there's a nice
   introNetworks app where you can
fill in all your details.
 
  http://www.macromedia.com/macromedia/events/max/agenda/birdsofafeather.html#1018-6
 
 
 
  --
  Flexcoders Mailing List
  FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
  Yahoo! Groups Links
 
 
 
 
 
 
 
 
 


 --
 Douglas Knudsen
 http://www.cubicleman.com
 this is my signature, like it?



 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links

















--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] returning a confirmation

2005-10-08 Thread Kelly Roman










In your result handler just make an alert
that displays the message returned.



mx:method name=someMethod
result=Alert.show(event.result) /











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeremy Rottman
Sent: Friday, October 07, 2005
12:20 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] returning a
confirmation





I have a simple app that I am
I writing, that uses a cf backend. After
a user inserts data into the database, I would
like to display a
confirmation to them tell them what file number
they have entered. My
cfc works fine, but I am not sure how I should
return the confirmation
from my cfc into flex. I have attached my cfc code
for one of my
functions.

 !--- Admin Add Sale Function ---
 cffunction
name=qiAdminAddSale access=remote returntype=string
output=true

 cfargument name=fileNum
type=string required=Yes /

 cfargument name=mlsNum
type=string required=no /

 cfargument name=propStreet
type=string rrequired=Yes /

 cfargument name=propNum
type=string required=Yes /

 cfargument name=propDir
type=string required=no /

 cfargument name=propAPN
type=string required=no /

 cfargument name=propCity
type=string required=Yes /

 cfargument name=propState
type=string required=Yes /

 cfargument name=propZip
type=string required=Yes /

 cfargument name=propCoe
type=string required=Yes /

 cfargument name=propPrice
type=string required=Yes /

 cfargument name=buyerName
type=string required=no /

 cfargument name=sellerName
type=string required=no /

 cfargument name=agentId
type=string required=no /

 cfargument name=agentId2
type=string required=no /

 cfargument name=agentId3
type=string required=no /

 cfquery name=qiAdminAddSale
datasource=#application.dsn#

 insert into tbl_smartPanel_propInfo

 (fld_fileNum, fld_mlsNum, fld_propStreet,
fld_propNum, fld_propDir,
fld_propCity, fld_propState, fld_propZip,

 fld_buyerName, fld_sellerName, fld_propCoe,
fld_propPrice,
fld_propAPN, fld_agentId, fld_agentId2,
fld_agentId3)

 values(

 '#arguments.fileNum#', '#arguments.mlsNum#',
'#arguments.propStreet#', '#arguments.propNum#',
'#arguments.propDir#',

 '#arguments.propCity#', '#arguments.propState#',
'#arguments.propZip#', '#arguments.buyerName#', 

 '#arguments.sellerName#', '#arguments.propCoe#',
'#arguments.propPrice#', '#arguments.propAPN#',
'#arguments.agentId#',

 '#arguments.agentId2#', '#arguments.agentId3#')

 /cfquery

 cfset msg = File Number:
'#arguments.fileNum#' has been added

 cfreturn msg /
 /cffunction











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Putting a picture on a page

2005-10-03 Thread Kelly Roman










Jpeg files end with jpg



Not jpeg

















From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED]
Sent: Monday, October 03, 2005
1:09 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Putting
a picture on a page





Well I tried to make sure the filename is correct I mean its
in the products folder. Also the filename is correct casewise. Does it have
anything to do with it being a jpeg file? 







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Passing value to textarea which I am calling as a popupwindow

2005-10-03 Thread Kelly Roman










You can do this two ways.



I will show you both at once because I hate
typing.



In your nda.mxml create a variable to
store a reference to the popup window with the two text fields. Example:



var myPopupWindow; 





function myPopupCreatorFunction() {

 var
initObj = new Object();

 initObj.someVariable
= myTextFieldOnNDA.text

myPopupWindow =
mx.managers.PopUpManager.createPopUp(this, textareawindow, 
true, {deferred: true, initObj});
myPopUpWindow =popup.centerPopUp();

}







Then in your textareawindow.mxml put:



var someVariable;







mx:Text id=WhateverIDYouWant
text={someVariable} /

















From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of sandip_patil01
Sent: Monday, October 03, 2005
10:54 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Passing
value to textarea which I am calling as a popupwindow





HI All,


I have an mxml file let say nda.mxml
page which has a button 
called Add Textarea.
When I click on that button I want to open popup
window contaning two 
text area which i did .
(i.e I am calling textareawindow.mxml with the
code

var popup =
mx.managers.PopUpManager.createPopUp(this, textareawindow, 
true, {deferred: true});
var temp =popup.centerPopUp();
)

Now,
on nda.mxml I have a data which I
stored in textfield .Now I want to 
pass the stored value to popup window.










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Populating values in datagrid from arrays

2005-10-03 Thread Kelly Roman
Title: Message










The problem is that when your getdata() function
executes you set specdata_arr equal to a single value instead of an array then
you repeat that step 4 times.



Also, unless your array has a column
called A and another one called B its not going to
display anything even if you set it correctly.















From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Parekh, Shweta - BLS CTR
Sent: Monday, October 03, 2005
4:53 PM
To: 'flexcoders@yahoogroups.com'
Subject: RE: [flexcoders]
Populating values in datagrid from arrays







Hi,





I type casted the result as you have
suggested here. But still my datagrid does not display the values.











import classes.ItemSpecVO;





var itemSpecVO:ItemSpecVO;
var myArray:Array;
var itemSpecVO1:ItemSpecVO;
var specdata_arr;











function getdata(result)
{
mx.controls.Alert.show(inside getdata - len+result.length);
myArray= mx.utils.ArrayUtil.toArray(result);
itemSpecVO=myArray[0];
mx.controls.Alert.show(d0: +itemSpecVO.colSpecData[0]);
-- prints value
correctly
mx.controls.Alert.show(d1: +itemSpecVO.colSpecData[1]);
-- prints value
correctly
itemSpecVO1=myArray[1];
mx.controls.Alert.show(d0:
+itemSpecVO1.colSpecData[0]); -- prints value correctly
mx.controls.Alert.show(d1:
+itemSpecVO1.colSpecData[1]); -- prints value correctly
specdata_arr=itemSpecVO.colSpecData[0];
specdata_arr=itemSpecVO.colSpecData[1];
specdata_arr=itemSpecVO1.colSpecData[0];
specdata_arr=itemSpecVO1.colSpecData[1];
}











mx:RemoteObject
id=itemDetailController
source=gov.bls.ppi.janus.repricing.manageitems.controllers.ItemDetailController
showBusyCursor=true
mx:method name=getColSpecData
result=getdata(event.result)

mx:arguments
 arg1{itemSid}/arg1
 arg2{irMonth}/arg2
 arg3{monthNo}/arg3
/mx:arguments
/mx:method
/mx:RemoteObject











mx:VBox
 mx:DataGrid id=colSpec_dg width=600 dataProvider={specdata_arr}
textAlign=left height=250 headerHeight=50
editable=true 
 mx:columns
 mx:Array
 mx:DataGridColumn headerText=A
columnName=A width=50 textAlign=left/
 mx:DataGridColumn headerText=B
columnName=B width=100 textAlign=left/
 /mx:Array
 /mx:columns
 /mx:DataGrid





/mx:VBox



What
could be the problem?

Thanks,

Shweta





-Original Message-
From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED]
Sent: Monday, October 03, 2005
3:06 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
Populating values in datagrid from arrays

Try casting the result to an Array ...

 myArray= mx.utils.ArrayUtil.toArray(event.result);

It worked for me in a similar case ..










Parekh, Shweta - BLS CTR
To: 'flexcoders@yahoogroups.com'
flexcoders@yahoogroups.com


[EMAIL PROTECTED]
cc:


Sent
by:
Subject: [flexcoders] Populating values in datagrid from
arrays 

flexcoders@yahoogroups.com


10/03/2005 02:19
PM


Please respond
to


flexcoders









Hi,

I am having problem populating values in my
datagrid. From my mxml, I make
a
remote call to my controller which returns an
array of ItemVOs.
ItemVO has one-dimensional integer array,
containing values for columns in
each row in the datagrid. i.e. if my int array in
ItemVO1 contains values
1,
2 and array in ItemVO2 contains values 3,4, then
my datagrid should display

 1 2
 3 4
Instead the code below displays my datagrid as
 1,2 1,2
 3,4 3,4

Code:
mx:RemoteObject
id=itemDetailController
source=controllers.ItemDetailController
showBusyCursor=true

mx:method name=getColSpecData
result=result_ColSpecData=event.result

mx:arguments

arg1{itemSid}/arg1

arg2{irMonth}/arg2

arg3{monthNo}/arg3

/mx:arguments

/mx:method
/mx:RemoteObject
mx:VBox

mx:DataGrid id=colSpec_dg width=600
dataProvider={result_ColSpecData}
textAlign=left height=250
headerHeight=50
editable=true 

mx:columns

mx:Array

mx:DataGridColumn headerText=A
columnName=colSpecData
width=50 textAlign=left/

mx:DataGridColumn headerText=B
columnName=colSpecData
width=100 textAlign=left/

/mx:Array

/mx:columns

/mx:DataGrid

mx:FormItem direction=horizontal
width=100% height=30

mx:Text text=value: width=90/mx:Spacer
height=63/

mx:Text id=tobEffIrm
text={itemDetailController.getColSpecData.result[0].colSpecData[0]}
width=57/mx:Spacer
height=63/

mx:Text id=tobEffIrm1
text={itemDetailController.getColSpecData.result[0].colSpecData[1]}
width=57/mx:Spacer
height=63/

mx:Text id=tobEffIrm2
text={itemDetailController.getColSpecData.result[1].colSpecData[0]}
width=57/mx:Spacer
height=63/

mx:Text id=tobEffIrm3
text={itemDetailController.getColSpecData.result[1].colSpecData[1]}
width=57/mx:Spacer
height=63/
/mx:FormItem

If I replace colSpecData with colSpecData[0] and
colSpecData[1], datagrid
does not show any values. But the text field
displays values fine as 1 2 3
4.
I fail to understand why the dataprovider in the
datagrid does not work
with
indexes specified. Can anybody please help me with
this.

Thanks in advance,
Shweta





--
Flexcoders Mailing List
FAQ: 

RE: [flexcoders] Help with error message ASAP!

2005-10-02 Thread Kelly Roman










You are going to have to break up your
file into components.



Its a good design practice anyways
so get in the habit of it.















From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of delaquae
Sent: Sunday, October 02, 2005
6:51 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Help with
error message ASAP!





I just started getting the
following error message when I try to 
compile an mxml file I have been working on in
FlexBuilder:

Branch between 9975 and 43151 around line 0
exceeds 32K span. If 
possible, please refactor this component.

Can someone tell me what this means? Is my
file too large?

Thanks...

Martin











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.