RE: [flexcoders] .csv import stuff

2009-05-10 Thread Jim Hayes
06:22 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] .csv import stuff You will have two delimiters.  One, the row delimiter is a newline or carriage-return or both.  The other is the field delimeter, often but not always a comma.   Google this and I think you will find some

Re: [flexcoders] .csv import stuff

2009-05-09 Thread Weyert de Boer
What do you mean with browse? You can just load the file using FileReference.load() and then just show it. Just split the text of the file by \n\r (or just \r) and then split every line by the separator (normally the comma). After parsing the first line you could use those as the keys for

Re: [flexcoders] .csv import stuff

2009-05-09 Thread khaled hafez
Hey, I am not an Expert in Flex but i do know that .csv files are Easy to handle using a Paser on ',' that's the separator in the .csv files (Comma Separated Value). If i were you, i would take the .csv file and convert it to a Well formated XML file then send it in an AJAX request to PHP to

RE: [flexcoders] .csv import stuff

2009-05-09 Thread Tracy Spratt
, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of khaled hafez Sent: Saturday, May 09, 2009 8:27 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] .csv import stuff Hey, I am not an Expert in Flex but i do know