Jump to content
Changes to the Jaspersoft community edition download ×

yskripch

Members
  • Posts

    33
  • Joined

  • Last visited

yskripch's Achievements

Contributor

Contributor (5/14)

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

Recent Badges

0

Reputation

  1. Hello, Currently, I am having problems when I mouse over a hyperlink, the hyperlink does not change color. Am I the only one having this problem as I didnt see any other posts? If anybody know where I can look to fix this that would be great or maybe post there mdxtable.css or styles.css or stylesheet.css that would be helpful for me to compare to my own. Thanks for the help.
  2. I wish there was a way to do this. :D , if anybody finds a way I would be interested to know as well.
  3. When you are passing parameters between reports you have to make sure you specify the exact name of the parameters from the 2nd report on the hyperlink tab in the 1st report. So if my parameter name is "Customer_last_Name". When in the hyperlink tab, I click on add parameter and I use "Customer_last_Name" as the link parameter name and then I specify the correct class and then on the expression I would put in something like this "$P{Customer_last_Name} for the local parameter I am passing to the 2nd report. You can also replace it with a $F if you want to pass fields. Check to make sure your names match.
  4. Can you login into JS-Pro using the defualt url? If not, then you have to get the correct URL and make sure you have the apache server or jboss running.
  5. Hello All, I have the classic 3.0 version of Ireport and the new 3.1.4 version of Ireport. I like the net beans look and it works great. The one thing I cannot figure out is how do you link input controls to reports in the new 3.1.4 version of IReport. In the old version it was very easy to link them because as you right click on "Input Control" you have the options of creating a new control or linking one. This was very useful for me as it allowed me to reuse many input controls between reports. I cannot find the same feature in the new version. If anybody could tell me how to do this, I would appreciate it greatly. Thanks in advance.
  6. Ok. That sounds great. Where should I put the code for the scriptlet you posted? Sorry for such a simple answer but I am new to reporting software and web developemt languages. Also, you are importing "import org.apache.commons.lang.WordUtils;" do I need a class or jar in my apache to have this work? Thanks, I appreciate all the help.
  7. Hello all, I have a problem that the string that I am retrieving from the database is very long. It can be over 1000 characters and it does not have any white spaces. The problem is that I cannot make a field big enough to cover the full string. I would like to be able to insert white space or new line characters into the string so that JasperReports would wrap the string on the white spaces. If anybody knows how to do this, please let me know. I have been trying to come up with a way for a couple of weeks and still have not managed to find one. Thanks for all the help. Yuriy
  8. I am also, curious if there is an answer for this inquiry. I have a similar query. Where I use select stuff from some_table $P!{WhereStatement} I was told this should work, but I receive the same error.
  9. I usually convert the BigDecimal to a Double then I can just use the minus sign. so my code for the variable looks like this. new Double (someValue.doubleValue() - someOtherValue.doubleValue() ) hope this helps.
  10. Are you grouping the values in your sql statement?
  11. You should try using java.sql.Timestamp class rather then java.util.Date. The date class will truncate the time when it is converted to java.sql.Date so using the timestamp is the only way I found to over come the problem. Hope this helps.
  12. most likely it would work because most of the files are the same
  13. The only one I could think of was to design a second report that drills down to the main report when the user clicks on a parameter. If there is a better way of doing this then please me know. Thanks.
  14. There are two ways to solve this problem. 1st: Have the input control use the date/time datatype which will allow the users to select the date and time. You would have to set the parameter class to Timestamp. 2nd: Have the users select only the date and then modify that parameter to include the correct timestamp. The tricky part is that you must use the java.sql.Timestamp class because it holds on to the timestamp. If you use the java.util.Date class then the timestamp will be truncated when the Date class is changed to java.sql.Date class. Hope this helps.
  15. As far as I know that is not possible. I was interested in a similar feature and I was told by JasperServer Support that it is not possible to use parameters in other input controls.
×
×
  • Create New...