Jump to content

gabriel.gagnon

Members
  • Posts

    4
  • Joined

  • Last visited

gabriel.gagnon's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. The problem is the value I have to pass is an empty array, and it seems the second report think that since the array is empty, it has to use the default parameter instead of nothing.
  2. Hello all, I have 2 reports, each taking a list of clients as a parameter. The default value of each is the user current clients, but he can change it if i want to. I have an hyperlink from the first report to the second one. If the user want ALL the clients, he leave the field empty, but as soon as i pass the empty list to the second report, it use the default value of the user clients. I want to keep the default value, and I dont want to send a list with all the clients since it would be too huge. I tried passing a null value, an empty list, a list with null but nothing worked. Is there any way around that? I'm on JasperReport Server 5.5.
  3. Hello all, I am currenty adding a feature to one of our report and I have a cascading input control in it. I have countries and currencies, and I want the currency field to be updated to the right one depending on the country (USA -> USD, Spain -> EURO). Right now when I change the country, the order in the input change, which is fine, but the previous selection still stay selected. Is there a way to "reset" the field so it always start with the first option when I change the country? I still want the user to select a different currency even though its not the country's currency by the way. Thank you!
  4. Hello, I am currently working on adding drill down on a dashboard made on the 5.5.0 version with Jaspersoft. I have an hyperlink to a global report when clicking on the background of a graph, which is working fine. But when the user click on a bar, I want a detailled report to open, with the same parameters with a little difference. But what happens is when we left click the bar, nothing happens, even if the cursor is the hyperlink one. What is weird is if the user use the middle mouse button instead, everything works fine. <itemHyperlink hyperlinkType="ReportExecution" hyperlinkTarget="Blank"><hyperlinkTooltipExpression><![CDATA[$R{revenue} + " : "+ new java.text.DecimalFormat("#,##0").format($F{revenuaa}.doubleValue())+ " (" + $P{param_currency} +")"]]></hyperlinkTooltipExpression><hyperlinkParameter name="_report"><hyperlinkParameterExpression><![CDATA[$P{link_report}]]></hyperlinkParameterExpression></hyperlinkParameter><hyperlinkParameter name="Office"><hyperlinkParameterExpression><![CDATA[" "]]></hyperlinkParameterExpression></hyperlinkParameter><hyperlinkParameter name="year"><hyperlinkParameterExpression><![CDATA[$P{year}]]></hyperlinkParameterExpression></hyperlinkParameter><hyperlinkParameter name="month_1"><hyperlinkParameterExpression><![CDATA[$V{month}]]></hyperlinkParameterExpression></hyperlinkParameter><hyperlinkParameter name="nbperiods"><hyperlinkParameterExpression><![CDATA[$P{nbperiods}]]></hyperlinkParameterExpression></hyperlinkParameter><hyperlinkParameter name="currency"><hyperlinkParameterExpression><![CDATA[$P{currency_1}.equals("EUR") ? "EURO": $P{currency_1}]]></hyperlinkParameterExpression></hyperlinkParameter></itemHyperlink>Is anyone know how I could fix this? Thank you!
×
×
  • Create New...