I would like to program a reporting tool.
Seaside seems great to handle all the web stuff, but I'll need charting and exporting to xls and pdf. What are the options to achieve this wiht Squeak? It would be much better with VW? _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Hi Tomas,
I typically export to Excel via CSV. I don't know what your needs are in that regard, but it has worked well for me. As for PDF, my favorite choice is Cairo. VisualWorks has a very good Cairo binding. I'm not aware of any current Cairo work being done in Squeak. I run Seaside in VisualWorks. Ken On Jun 22, 2007, at 12:43 PM, Tomas Carini wrote: > I would like to program a reporting tool. > Seaside seems great to handle all the web stuff, but I'll need > charting and exporting to xls and pdf. > What are the options to achieve this wiht Squeak? It would be much > better with VW? > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside -- Ken Treis Miriam Technologies, Inc. _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Tomas Carini
Charts,
- http://www.fusioncharts.com PDF, - http://www.realobjects.com/PDFreactor.808.0.html Excel, - We just use CSV Cheers, -Boris -- +1.604.689.0322 DeepCove Labs Ltd. 4th floor 595 Howe Street Vancouver, Canada V6C 2T5 http://tinyurl.com/r7uw4 [hidden email] CONFIDENTIALITY NOTICE This email is intended only for the persons named in the message header. Unless otherwise indicated, it contains information that is private and confidential. If you have received it in error, please notify the sender and delete the entire message including any attachments. Thank you. > -----Original Message----- > From: [hidden email] [mailto:seaside- > [hidden email]] On Behalf Of Tomas Carini > Sent: Friday, June 22, 2007 12:44 PM > To: Seaside - general discussion > Subject: [Seaside] Charting and PDF export > > I would like to program a reporting tool. > Seaside seems great to handle all the web stuff, but I'll need > charting and exporting to xls and pdf. > What are the options to achieve this wiht Squeak? It would be much > better with VW? > _______________________________________________ > Seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Ken Treis
On 6/22/07, Ken Treis <[hidden email]> wrote:
I'm not aware of any current Cairo work being done in There is some work being done on Cairo in Squeak: Rome.
_______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Dear Seasiders,
I have a similar issue. I am making a Webapplication on SqueakSeaside. It has to do with users uploading their contents in the form of a list. Presently I have a Component, in which user can enter item one by one. If the user has to enter a large number of items, how can that be done. One solution is from a Excel file. Can someone throw more light on how exactly this is going to work and how exactly CSV works. Thanks and Regards, Rajeev On 6/23/07,
Chris Cunningham <[hidden email]> wrote:
-- Rajeev Lochan Co-founder, AR-CAD.com http://www.ar-cad.com +91 9212090622 (Gurgaon) 080 65355873 (Bangalore) _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
On Mon, Jun 25, 2007 at 06:32:42PM +0530, Rajeev Lochan wrote:
> Dear Seasiders, > I have a similar issue. I am making a Webapplication on SqueakSeaside. It > has to do with users uploading their contents in the form of a list. > Presently I have a Component, in which user can enter item one by one. If > the user has to enter a large number of items, how can that be done. DabbleDB uses copy and paste from an excel file. One selects the cells in the worksheet, copies them, then pastes that into a textarea at DabbleDB. You can see it working in their demo video: http://dabbledb.com/explore/7minutedemo/ -- Matthew Fulmer -- http://mtfulmer.wordpress.com/ Help improve Squeak Documentation: http://wiki.squeak.org/squeak/808 _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Thanks for the direction. I am sort of working on textArea now. I have rendered a textArea and the input entered by the user is saved in an instance variable bulk. As of now, I am concentrating on users entering the contents separated by comas.
html textArea value: self bulk; callback: [:value | self bulk: value]. html submitButton callback: [self addBulk]; text: 'Add Bulk'. When I hit "Add Bulk" Button, the contents which are separated by comas, should be added as individual items to a List.(I have a method which adds individual items). But I am stuck at the point as to how to convert textArea contents separated by comas to individual items. Help needed. Regards, Rajeev On 6/25/07, Matthew Fulmer <[hidden email]> wrote:
On Mon, Jun 25, 2007 at 06:32:42PM +0530, Rajeev Lochan wrote: -- Rajeev Lochan Co-founder, AR-CAD.com http://www.ar-cad.com +91 9212090622 (Gurgaon) 080 65355873 (Bangalore) _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Tapple Gao
Matthew Fulmer wrote:
> On Mon, Jun 25, 2007 at 06:32:42PM +0530, Rajeev Lochan wrote: > >> Dear Seasiders, >> I have a similar issue. I am making a Webapplication on SqueakSeaside. It >> has to do with users uploading their contents in the form of a list. >> Presently I have a Component, in which user can enter item one by one. If >> the user has to enter a large number of items, how can that be done. >> > > DabbleDB uses copy and paste from an excel file. One selects the > cells in the worksheet, copies them, then pastes that into a > textarea at DabbleDB. You can see it working in their demo > video: > http://dabbledb.com/explore/7minutedemo/ > > Are there no bindings from excel to smalltalk? I know Perl has that on CPAN for reference. _______________________________________________ Seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |