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

powermacx

Members
  • Posts

    11
  • 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 powermacx

  1. I tried setting up conditional styles to set a different pattern (number of decimal places on a numeric field) based on a parameter. But the pattern doesn't seem to be applied at all. I know the conditions in the conditional styles are correct because to debug them I also assigned each a diferent forecolor, and that is applied correctly to the field, but the pattern isn't. Any ideas as to why? Thanks. EDIT: Fixed! There seems to be a bug in iReport: my field originally had a fixed pattern, which I removed when I created the conditional style so that it wouldn't override the style. The problem, as I found by looking at the jrxml source, is that iReport didn't actually erase the pattern attribute, instead setting it as pattern="". After erasing it directly in the jrxml source, the style started working correctly. It seems that once you assign a pattern through the iReport GUI, it can't be fully removed without editing the source by hand. To sum up: erasing a previously set pattern from a field in iReport results in: <textField pattern="" ... > In order for a conditional pattern style applied to that field to work, the empty pattern has to be removed by hand: <textField ... > Post Edited by powermacx at 02/07/2011 21:28
  2. Correction, "Expected ordering after step 3" is "C,D,A,B" (in back to front ordering, with C being the back-most object and B the front-most)
  3. Sorry, I submitted this to the ireport tracker by mistake, I'll submit it to the jasperreports tracker.
  4. Sorry, I submitted this to the ireport tracker by mistake, I'll submit it to the jasperreports tracker.
  5. Hi, I submitted a feature request for jasperreports on the ireport tracker by mistake, so I changed its status to closed and posted it on the jasperreports tracker (http://jasperforge.org/projects/jasperreports/tracker/reportadvance ) but... it appeared on the ireport tracker again! The feature request ids where 5046 (which I closed) and 5047 (still open but for some reason again on the wrong tracker) http://jasperforge.org/projects/ireport/tracker/view.php?id=5047 Can it be moved or should I close it (again) and give it another try to post on the jasperreports tracker? Thanks Post Edited by powermacx at 01/21/2011 15:24
  6. The watermark is designed to be *below* everything, so any text will always be visible. I guess what you want is actually a semi-transparent watermark *above* everything?
  7. If I copy a large number of objects in iReport from one report to another, I get a ConcurrentModificationException when pasting and several of the copied objects fail to be pasted. I made a very simple test case that reproduces the problem: blank report made from the blank A4 template, in which I created 25 "Static Text" objects. Steps to reproduce: - Create a new blank document (from the blank A4 template) - Open the attached test report, select all 25 static text objects and select copy - Switch to the blank document and select paste Result: java.util.ConcurrentModificationException at java.util.AbstractList$Itr.checkForComodification(AbstractList.java:449) at java.util.AbstractList$Itr.next(AbstractList.java:420) at java.util.Collections$UnmodifiableCollection$1.next(Collections.java:1010) at com.jaspersoft.ireport.designer.widgets.SelectionWidget.findWidgetStatus(SelectionWidget.java:132) at com.jaspersoft.ireport.designer.widgets.SelectionWidget.updateStatus(SelectionWidget.java:109) at com.jaspersoft.ireport.designer.widgets.SelectionWidget$1.propertyChange(SelectionWidget.java:80) at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:333) at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:270) at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:291) at net.sf.jasperreports.engine.base.JRBaseElement.setX(JRBaseElement.java:370) at com.jaspersoft.ireport.designer.outline.nodes.ElementPasteType.paste(ElementPasteType.java:253) at org.openide.explorer.ExplorerActionsImpl$MultiPasteType.paste(ExplorerActionsImpl.java:441) at org.openide.actions.PasteAction$ActionPT.actionPerformed(PasteAction.java:791) at org.netbeans.core.ModuleActions.invokeAction(ModuleActions.java:104) at org.openide.actions.PasteAction$ActionPT.run(PasteAction.java:815) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:572) [catch] at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:997) This is with iReport 3.7.6. Edit: submitted bug report: http://jasperforge.org/projects/ireport/tracker/view.php?id=5023 Post Edited by powermacx at 01/07/2011 21:27
×
×
  • Create New...