excel « IceFaces « JSF Q&A





1. problem when exporting to excel with JSF    stackoverflow.com

I'm using JSF/ICEFaces. The page is ICEFaces however I'm using the JSF datatable because ICEFaces had slow performance for some reason. Anyway, unlike the ICEFaces datatable, the JSF table doesn't come ...

5. I need a simple image to start the excel export for a data table    icefaces.org

I like to have a simple icon to use the new . At the moment I can have two text links whereas the first is clicked to create the export and the second that is rendered then to start the download. It is possible to use an image inside the tag. But, this is rendered for the second "to download" link. ...

7. problem when exporting to excel with ICEFaces & JSF table    icefaces.org

Hello, I'm using JSF/ICEFaces. The page is ICEFaces however I'm using the JSF datatable because ICEFaces had slow performance for some reason. Anyway, unlike the ICEFaces datatable, the JSF table doesn't come with export to excel so I'm writing my own. I decided to use Apache POI as below. The code executes well but I don't see pop up to save ...

9. How to user outputTypeHandlers to custom my excel export???    icefaces.org

Hi. In the Improvements & Enhancements of v1.8.0 there are the next things: * New Data Export component o A new ice:dataExporter component can be used to provide user-downloadable exports of ice:dataTable data contents. o Supports exporting of data in various formats via an extensible outputTypeHandler. o CSV and Excel outputTypeHandlers are provided with the component, developers can define custom output ...





10. Dataexporter with excel to get Numbers    icefaces.org

There is a super cool component to export data. Unfortunately, it doesn't work worth a darn with Excel; every cell comes through as a string. I chose to write a very simple work around. Hopefully this will help someone else. This wasted a good bit of my time; there is a dearth of examples of the dataExporter. Create your own subclass ...

11. exporting data to Excel (not tables)    icefaces.org

12. Floating point values via dataExporter to Excel as text?    icefaces.org

The values in my dataTable have tags to ensure the values are formatted as Dutch floating point values, using comma as the decimal separator. (E.g. 3,1415 represents pi) However, if I export this table to Excel, the decimal separator defaults to period. This effectively turns the floating point values into text. It seems that the dataExporter only exports texts, relying ...

13. Problems with ice:outputResource and excel file    icefaces.org

Hi. I'm creating excel files using HSSF, everything works great until I have to open the excel file. I'm using an ice:outputResource to open the excel file and the same class as used in component-showcase. The problem is I pass the information created in memory and the file is not corrected open. But If I do the same using a file ...

16. SHOW EXCEL FILE (MHT) WITH IFRAME    icefaces.org





18. convert table to excel    icefaces.org

hi I have this -.... but it doesnt work, I dont know why, if anybody know can tell me please!!

19. Export to excel problem using icefaces DataExporter    icefaces.org

Author Message 02/12/2011 01:47:58 Subject: Export to excel problem using icefaces DataExporter chaithalir Joined: 24/06/2009 00:00:00 Messages: 4 Offline Hi, I am experiencing some exceptions while trying to export datatable to excel file. Excel file will render properly but in log file i will come across following exception: 2011-12-02 10:33:03,211 ERROR [com.icesoft.faces.facelets.D2DFaceletViewHandler] (http-127.0.0.1-9090-3) Problem in renderResponse: /resource ...

20. export to pdf or excel    icefaces.org

Hello. I tried to use the war project in ICE-1623 using eclipse 3.3 but I can't be able to do it. I get an error in the file custom.taglib.xml in component tag. Later I have decompiled the class and I created a project from scratch using the java file but I get more error in the java files, apart I need ...

21. Open Excel sheet : Using Icefaces    icefaces.org

Hi, I am working on a java project which have the requirement of downloading table data to Excel Sheet. How can I open an Excel sheet using ICeFaces, Do Icefaces gives any facality to set the response type "excel" ?? As of now I am calling an external servlet from javascript for the same: The SpreadSheet class sets the response content ...

23. Generating Excel files using POI    icefaces.org

I am working on an ICEFaces application that will allow the user to export the contents of a DataTable to an Excel spreadsheet. I have the solution partially working, via the usage of Apache POI. But I'm stuck on how to auto-initiate a download of the generated Excel file once the data has been exported. Below is the experimental source code. ...