Jump to content
We've recently updated our Privacy Statement, available here ×

kburns

Members
  • Posts

    92
  • Joined

  • Last visited

kburns's Achievements

Collaborator

Collaborator (7/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

0

Reputation

1

Community Answers

  1. Right now when a normal user creates a schedule they can see it and so can the admin. However when an admin creates a schedule it is only viewable by the admin. Is there anyway around this? I would like regular users to view (and hopefully edit) admin schedules. Also, I'm running JasperServer 4.5.1. Thanks
  2. I have an input control that is a single select list of values. Let's call it answer, and the choices are: 1. Name/Label = "Yes", Value = 1 2. Name/Label = "No", Value = 0 $P{answer} will display the selection's value (either 1 or 0). How can I display the selection's name/label? (either "Yes" or "No")
  3. I have a dropdown input control where the user selects a number 1 to through 10. Lets call the parameter $P{myNumber}. I've tried having $P{myNumber} as both {{java.lang.String}} and {{java.lang.Integer}}. Inside my query I'd like to use datediff. Normally I would do something like this to get today's date minus 5 datediff(dd,5,convert(varchar,getdate(),101)) Now I'd like to use $P{myNumber}. For example: datediff(dd,$P{myNumber},convert(varchar,getdate(),101)) Has anyone done this kind of thing? I can't get it to work, and as I said, I've with $P{myNumber} as both {{java.lang.String}} and {{java.lang.Integer}}, and also using the ".intValue()"
  4. Hi mgeise - I am not entirely sure what the phrase "Domain Report" means in jasper, but I assume it is a report created in iReport that runs on a remote server. Is this correct? And if so, this is basically what iReport is intended for, right? I found a work around that involves manually editing the JRXML file and changing <queryString> and <field>'s <queryString> <![CDATA[select zxcv from dfgh where $X{IN, dfgh, dfgh}]]> </queryString> <field name="asdf" class="java.lang.String"/> This works, but its an ugly hack and this feels like the kind of functionality that iReport is intended to do, but maybe I am missing something here? (very likely :-) I created a support ticket for this and it was flagged as a bug/defect, so we'll see where they go from here.
  5. I'm running JasperServer 4.5, and getting this error when I click "Read Fields". Error:Sourced file:inline evaluation of: `` my.customzied.java.class '': Class: com.jaspersoft.jasperserver.api.metadata.user.domain.impl.client.MetadataUserDetails not found in namespace I don't think this has anything to do with my.customzied.java.class because I have no problem displaying that parameter in the title/page header. Any ideas? What am I missing?
  6. Hey there. I have an implementation of the jasper web services that uses a common jquery datepicker calendar. Problem is that our production servers live in Texas on CST, but I am in DC on EST. My web browser sends 12/6/11 12:00 AM EST (midnight) and it is interpreted as 12/5/11 11:00 PM CST by the jasper server. Any recommended ways to fix this? Should I send the local browser's timezone as a parameter to my web services code?
  7. I wanted to set a variable in the jasperreports.properties that will apply globally to all reports. however it did not work. Here is what I did... 1. Shutdown tomcat 2. Add the following line in WEB-INF/classes/jasperreports.propertiesnet.sf.jasperreports.export.xls.white.page.background=false 3. Restart tomcat Am I missing something? I should not need to re-compile/re-deploy, right?Thanks!
  8. When I export to XLSX my dates (java.sql.Timestamp) are left blank. The text field's expression class is set to java.sql.Timestamp. However when the expression class is java.lang.String this works: new SimpleDateFormat("MM-dd-yyyy").format($F{start_date}) Any idea why this is happening? Is this a known issue? I am using JasperReport Server Professional 4.0.1 and iReport Designer 4.0.
  9. Also - Set property: net.sf.jasperreports.export.xls.white.page.background = FALSE
  10. To answer my own question, I implemented like so. JasperPrint print = client.runReport(rd, reportInputMap); .... bunch of code .... JRAbstractExporter myExporter; .... bunch of code .... myExporter = new JRXlsExporter(); response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); myExporter.setParameter(JRExporterParameter.OUTPUT_STREAM, response.getOutputStream()); myExporter.setParameter(JRExporterParameter.JASPER_PRINT, print); myExporter.exportReport();
  11. Only post this in the hope it can help others who come across this problem. I've discovered that the whited out column/row lines can be eliminated by make all elements OPAQUE = FALSE. This makes sense, but the puzzling thing is that I didn't see this when exporting to XLSX.
  12. After playing with my reports I realize that this happens when the report has a small number of rows. How many rows does it take? Or is it caused by pixel size? Maybe the size of the page height?I have no idea, but would really appreciate anyone's input on this.
  13. Hey everyone - I've come across a problem with my web services implementation where I get a "HTTP Status 404 - result 'null' not found" when I try to export an XLS file that has the first page blank. This only happens witgh XLS and only with the first page. Has anyone come across this?
  14. Could this have to do with differences in version of the Apache POI library? I am using poi-3.7-20101029.jar How can I figure out which version JasperReports uses?
×
×
  • Create New...