RE: Reading a .csv file and displaying grid table of it

2010-02-10 Thread Wilson Ikeda
44:52 +0200 > To: Tapestry users > Subject: RE: Reading a .csv file and displaying grid table of it > > Ahh no formatting allowed. The .csv table is 3 columns and 8 rows. The > grid displays 8 rows but one column ? > > Thanks --

RE: Reading a .csv file and displaying grid table of it

2010-02-10 Thread Eldred Mullany
Thanks Thiago, its working now ! -Original Message- From: Eldred Mullany Sent: 10 February 2010 02:58 PM To: 'Tapestry users' Subject: RE: Reading a .csv file and displaying grid table of it Thank you -Original Message- From: Thiago H. de Paula Figueiredo [ma

RE: Reading a .csv file and displaying grid table of it

2010-02-10 Thread Eldred Mullany
Thank you -Original Message- From: Thiago H. de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: 10 February 2010 02:54 PM To: Tapestry users Subject: Re: Reading a .csv file and displaying grid table of it On Wed, 10 Feb 2010 10:44:52 -0200, Eldred Mullany wrote: > Ahh

RE: Reading a .csv file and displaying grid table of it

2010-02-10 Thread Kristian Marinkovic
ma RE: Reading a .csv file and displaying grid table of it Ahh no formatting allowed. The .csv table is 3 columns and 8 rows. The grid displays 8 rows but one column ? Thanks -Original Message- From: Eldred Mullany Sent: 10 February 2010 02:37 PM To: Tapestry users Subject: Reading a .csv

Re: Reading a .csv file and displaying grid table of it

2010-02-10 Thread Thiago H. de Paula Figueiredo
On Wed, 10 Feb 2010 10:44:52 -0200, Eldred Mullany wrote: Ahh no formatting allowed. The .csv table is 3 columns and 8 rows. The grid displays 8 rows but one column ? The easiest way of doing what you want is to create a class containing a property for each column. Parse the file, fill th

RE: Reading a .csv file and displaying grid table of it

2010-02-10 Thread Eldred Mullany
Ahh no formatting allowed. The .csv table is 3 columns and 8 rows. The grid displays 8 rows but one column ? Thanks -Original Message- From: Eldred Mullany Sent: 10 February 2010 02:37 PM To: Tapestry users Subject: Reading a .csv file and displaying grid table of it Hi everyone

Reading a .csv file and displaying grid table of it

2010-02-10 Thread Eldred Mullany
Hi everyone I am attempting to read a .csv file from a directory, however I am not sure what I am doing wrong here. I am using a BufferedReader to read the file. Then I am looping through using the readLine() method and assigning each line to an ArrayList, well I thought it was as simple as th