dataexporter « IceFaces « JSF Q&A





1. Icefaces 1.8.2 dataexporter not removing temp files after    stackoverflow.com

Using Icefaces 1.8.2 and the dataexporter tag. The export works but it creates "temporary" files in the webapp/export/ folder (which it creates). And it does not remove the files there after ...

3. dataExporter in 1.8.0    icefaces.org

In icefaces1.8, did it render the rest of the page with CSS correctly? For us, any value change listener is activated just to set some value in the Backing bean, it refreshes the page and there goes the CSS and other included files on that page. Did you experience this behaviour? Thanks

6. dataexporter not exporting dynamic columns    icefaces.org

I have a datatable with a single ice:column(expand commandlink & image) and ice:columns with value binding to a backing bean ListDataModel. The table has a table header and footer, and each column has it's own header and footer facets. I've attached a screenshot. When I export to either CSV or Excel, I get no headings and only 1 cell containing the ...

7. DataExporter - with dynamic dataTable    icefaces.org

Hello, i create a dataTable in dynamic mode (binding with Java) and i want to export the data in CSV with the DataExporter component. The DataTable is well rendered in the icefaces view. On setClickToCreateFile() method, the error message next is coming in the console : the resource is not defined The CSV file is created, but is empty. Any ideas ...

8. DataExporter issues    icefaces.org





11. dataExporter what if we want the view and not the underlying data    icefaces.org

I've got a table which has URLs in it, and I want the visible link values as an option on download. Also we have a table that has converters, and we want the values that appear on the HTML page, not the underlying model. Basic request, we want the Excel table to look like the web page, not the model. Perhaps ...

14. Issue when exporting data from an Ice Faces data table using dataExporter    icefaces.org

The problem is the second time I try and export the same table but with different data. Issue can be recreated by following this path. 1) Export data from a data table into an excel spreadsheet. 2) Close this spreadsheet. 3) Refresh the data table with a different set of data 4) Attempt to export this data. The following happens: A ...

15. dataExporter problem    icefaces.org

Hello gurus ! I'd just like a dataExporter component code snippet to try it. I've downloaded ICEfaces-1.8.1-src sample, but unfortunately I didn't get it working. I'm using Netbeans 6.5 e Tomcat 6.5. My problem to get the dataExporter working on is just the ResourceBundle working but I always receive the error: javax.servlet.ServletException: java.lang.Exception: javax.faces.FacesException: javax.el.ELException: javax.faces.el.PropertyNotFoundException: javax.el.PropertyNotFoundException: Property 'page.dataExporter.synopsis' not found ...

16. Ice:dataExporter does not export properly table having ice:commandLink    icefaces.org

The ice:dataExporter component does not work properly with ice:commandLink, and with date field where date converter is used. The value of the commandLink was suffixed with some random value and for the date field it is showing only time. Below is the jspx code and attached is the output of the export (No headers in output as well).





17. DataExporter - Problem with Packaged Archive(production mode)    icefaces.org

Hi I have implemented functionality for my .It's working fine in Exploded Archive(development mode) But i want it should be work in Packaged Archive(production mode). When i running in Packaged Archive(production mode),it 's gave the following error. com.sun.faces.lifecycle.LifecycleImpl phase WARNING: executePhase(APPLY_REQUEST_VALUES 2,com.icesoft.faces.context.BridgeFacesContext@113e285) threw exception javax.faces.FacesException at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyRequestValuesPhase.java:109) at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:248) at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:117) at com.icesoft.faces.webapp.http.core.JsfLifecycleExecutor.apply(JsfLifecycleExecutor.java:18) at com.icesoft.faces.webapp.http.core.ReceiveSendUpdates.renderCycle(ReceiveSendUpdates.java:122) at com.icesoft.faces.webapp.http.core.ReceiveSendUpdates.service(ReceiveSendUpdates.java:73) at com.icesoft.faces.webapp.http.core.RequestVerifier.service(RequestVerifier.java:28) at ...

18.  creates empty file    icefaces.org

...

19. I wrote a PDF OutputTypeHandler for DataExporter if anyone is interested...    icefaces.org

I wrote a PDF Exporter using the iText lib for DataExporter. If anyone thinks this is useful I can package it up so you can use it as an export. I have also written a IceFaces component using YUI charts including tooltips and node click events. This will take longer to package and usage is within Java right now since it ...

20. DataExporter with Usage    icefaces.org

22. dataExporter--is it really better?    icefaces.org

23. ice:dataExporter not working on ie8    icefaces.org

24. DataExporter on IE    icefaces.org

25. DataExporter does not work    icefaces.org

27. ice:dataExporter new feature    icefaces.org

29. ice:dataExporter not working right with this table, iceface 1.8.0    icefaces.org

I got this table with dynamic columns to show up. Now I'm trying to export to excel. It looks like the headers and the dynamic columns don't show up...I'm only getting 14 or so columns, and I expect 12 more for a total of 24 columnsCode:

31. Problems with dataexporter    icefaces.org

32. dataExporter    icefaces.org

33. dataExporter and empty row    icefaces.org

34. Can we override dataexporter class?    icefaces.org

36. DataExporter Creates Empty Files    icefaces.org

package portlet.utils; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import javax.faces.component.UIComponent; import javax.faces.component.UIData; import javax.faces.model.ListDataModel; import org.apache.commons.validator.GenericValidator; import com.icesoft.faces.component.dataexporter.CSVOutputHandler; import com.icesoft.faces.component.ext.UIColumns; public class CustomCSVOutputHandler extends CSVOutputHandler { public CustomCSVOutputHandler(String path) { super(path); } private UIData uiData; public void setUIData(UIData data) { this.uiData = data; } public void flushFile() { writeColumns(); super.flushFile(); } private void writeColumns() { Iterator components = uiData.getFacetsAndChildren(); while (components.hasNext()) ...

37. dataexporter take ALWAYS the same values from the datatable    icefaces.org

Hi. I have a datatable and a dataexporter. The datatable has a selectOneMenu associated to show data in datatable so the rows change depending on a criteria. The first time I export the datatable it takes all the values correctly but later in the same session I change the data in datatable (using my selectOneMenu) and the dataexporter generate the excel ...

38. dataExporter fixes mage links and null values    icefaces.org

atomz4peace Joined: 20/11/2006 00:00:00 Messages: 106 Offline I had 2 problems with the default dataexporter for my app, and fixed them in a custom exporter if it helps anyone. The first was if I had an image in my datatable, the default will export the html links and all that. Very messy. The other was that if a value was null, ...

42. Problem with in Red Hat    icefaces.org

Hello! I have an ice object: dataExporter that works properly on my development environment (Windows XP), but when it deploys the application on a Red Hat on ice: dataExporter not launch the window to download file ... Do not throw any error and the file is generated on the server in a folder export, but not launch the download window to ...

43. dataExporter attachment property    icefaces.org

45. DataExporter output of converted data    icefaces.org

46. Problem with     icefaces.org

47.     icefaces.org

48.  renderLabelAsButton css issues    icefaces.org

50. Problems with DataExporter    icefaces.org