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

jjones_4

Members
  • Posts

    4
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by jjones_4

  1. IT WORKED !!!! Thanks For The Help. I am still pretty new to Jasper. I did not know that a parameter is treated different than a variable.
  2. I need to show a date in a language defined by a locale that is stored in a string variable named "locale". new SimpleDateFormat("EEEE, MMMM d, YYYY", Locale.forLanguageTag("es-MX")).format(new Date("09/01/2016")) This code returns "jueves, septiembre 1, 2016" which is what I need. However, if I store the "es-MX" in a simple string variable and replace the hard-coded locale with the variable, it returns NULL: new SimpleDateFormat("EEEE, MMMM d, YYYY", Locale.forLanguageTag($V{locale})).format(new Date("09/01/2016")) I have also replaced the Locale.forLanguageTag("es-MX") with new Locale("es", "MX") but get the same result. Does anyone know of a way to accomplish this? Thanks, Danny
  3. Can someone tell me how to find the last column number? I have a report with 4 columns. The print order is set to Vertical. The last record printed in the 3rd column. I would like to print a message immediately after the last record. I can put the message in the column footer and use "print when" to only print it in the last column if I knew what the last column number was. Any help is appreciated. Thanks. Jeff
×
×
  • Create New...