Re: [jasperreports-questions] Custom Components

2010-02-17 Thread Lucian Chirita
The JasperReports user guide (see information on it at http://www.jaspersoft.com/jasperreports-ultimate-guide) contains an explanation of the barcode component in the form of a tutorial. Writing a custom component is indeed rather complicated.  The best thing to do is to start from an existing

Re: [jasperreports-questions] multiple subreports in jasperserver

2006-08-30 Thread Lucian Chirita
See this discussion: http://www.jasperforge.org/index.php?option=com_joomlaboard&Itemid=215&func=view&id=10659&catid=10 This issue was caused by a bug in JasperIntelligence. Regards, Lucian Kacper Wrześniewski wrote: > Hello. > > I have a report in iReport with subreport that also has a subrepor

Re: [jasperreports-questions] Excel-friendly report

2006-08-29 Thread Lucian Chirita
If you use JR 1.2.5, you could try setting the JRXlsExporterParameter.IS_DETECT_CELL_TYPE flag when exporting. This would ensure that text fields that have numerical/date expressions produce numerical/date Excel cells. HTH, Lucian Wetzelberger, Stephen wrote: > > All, I am trying to download

Re: [jasperreports-questions] Mutiple row values for a particular column in a row. (newbie)

2006-08-24 Thread Lucian Chirita
You need to create a subreport to display the list of options and include in your report, passing new JRBeanCollectionDataSource($F{options}) as data source for the subreport. HTH, Lucian vijay venkataraman wrote: > Hi, > I have a situation where i have to display List of Items in a tabular >

Re: [jasperreports-questions] Crosstabs

2006-08-11 Thread Lucian Chirita
Regarding the "already processed" exception, see this discussion: https://sourceforge.net/forum/forum.php?thread_id=1379985&forum_id=113530 I think that the problem in your case is that you haven't set the proper reset time for your crosstab dataset. If you want a crosstab for each product, you

Re: [jasperreports-questions] stopping an ongoing jasper report

2006-07-17 Thread Lucian Chirita
Follow-up here https://sourceforge.net/forum/message.php?msg_id=3824722 Reza Razavipour wrote: > To all, > > I am very new to Jasper Reports, so excuse my ignorance or misuse of > terms. Simply put, I spawn a thread that starts a Jasper Report, if > the user cancels the report, through the UI

Re: [jasperreports-questions] Reference a parameter from another parameter

2006-07-14 Thread Lucian Chirita
You can use the default value expression of the parameter to do this: $P{Parameter}.convertToDate etc HTH, Lucian David Meiser wrote: > Is it possible to reference one parameter from another? > > I need to get the date prior to a user entered date and while, in > theory, I could do this

Re: [jasperreports-questions] jasper report and virtual disc usage

2006-06-09 Thread Lucian Chirita
You can get the full JR distribution and check the demo/samples/virtualizer sample to see how a virtualizer can be used while filling/exporting a report. You can also find some information from the API Javadocs at http://jasperreports.sourceforge.net/api/index.html HTH, Lucian Reza Razavipour

Re: [jasperreports-questions] Question re report query SQL

2006-06-09 Thread Lucian Chirita
Read this, it shows how to pass SQL fragments through parameters: http://jasperreports.sourceforge.net/tutorial/index.html#parameters HTH, Lucian John Dunn wrote: > Is it possible to pass part of, or an entire SQL query string as a > parameter? > > My problem is that the SQL where clause may var

Re: [jasperreports-questions] store field values

2006-06-09 Thread Lucian Chirita
You can do this easily in a scriptlet: ((JRFillField) fieldsMap.get(fieldName)).getOldValue() There are other ways to accomplish this, but I think this is the simplest one. HTH, Lucian John Dunn wrote: > I want to be able to compare a value in my data record with the value from > the previous r

Re: [jasperreports-questions] Tomcat 5.5 and JasperReports 1.2.2

2006-05-16 Thread Lucian Chirita
Hi Regarding Javaflow, you can't find it as there is no release yet. You can get a Javaflow snapshot jar from the JR distribution (the project zip), or from CVS (if you don't want to get the full project zip): http://jasperreports.cvs.sourceforge.net/jasperreports/jasperreports/lib/ I'll lea

Re: [jasperreports-questions] Please help

2006-05-03 Thread Lucian Chirita
[mailto:[EMAIL PROTECTED] Behalf Of Lucian Chirita Sent: Wednesday, May 03, 2006 2:30 PM To: JasperreportsQuestions (E-mail) Subject: Re: [jasperreports-questions] Please help Hi See this regarding the Html export: https://sourceforge.net/forum/message.php?msg_id=3711741 Regards, Lucian M

Re: [jasperreports-questions] Please help

2006-05-03 Thread Lucian Chirita
Hi See this regarding the Html export: https://sourceforge.net/forum/message.php?msg_id=3711741 Regards, Lucian Meenakshi Singh wrote: hi all, I have recently upgraded to jasper reports 1.2.2 from JR 1.1.1. Several reports run through JR in my project in html, pdf & xls format. Pdf is worki

Re: [jasperreports-questions] maven 2 jasper reports plugin?

2006-05-02 Thread Lucian Chirita
The only one I'm aware of is one written by Grégory Joseph, currently found in the Mojo sandbox at codehaus.org (see http://mojo.codehaus.org). Regards, Lucian Citat Dan Adams <[EMAIL PROTECTED]>: > Is there a maven 2 plugin for compiling reports? > > -- > Dan Adams > Software Engineer > Inter

Re: [jasperreports-questions] Hide a field based on the next row

2006-04-27 Thread Lucian Chirita
Hi If I understand your requirement correctly, you need something similar to this (you could create a group based on the date field): http://sourceforge.net/forum/message.php?msg_id=3540986 If so, take a look at the provided solution and see whether it suits your needs. HTH, Lucian Adrian

Re: [jasperreports-questions] delaying conditional style evaluation

2006-04-27 Thread Lucian Chirita
The JR rendering engine always evaluates conditional styles when it begins to render a band, delayed conditional style evaluation is not currently supported. Still, you can use a styled text field with "Auto" evaluation type to change the style of the biggest value. You'd obviously need to cr

Re: [jasperreports-questions] Cross tab sample required

2006-04-19 Thread Lucian Chirita
A sample is available on the JR site: http://jasperreports.sourceforge.net/samples/index.html A couple more samples are available in the full JR distribution (get jasperreports-x.y.z-project.zip from SF or check the CVS) under demo/samples/crosstab. Regards, Lucian Vidhya C, ASDC Chennai w

Re: [jasperreports-questions] Re: with out memory filling big reports

2006-04-19 Thread Lucian Chirita
VM memory, you should use a virtualizer. some one know why? thanks alvaro tovar Regards, Lucian Chirita __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http:/

Re: [jasperreports-questions] Parameter becomes null without warning !

2006-03-07 Thread Lucian Chirita
Hi Are you using $P{REPORT_PARAMETERS_MAP} as parametersMapExpression? If so, change it to new HashMap($P{REPORT_PARAMETERS_MAP}) as the result of this expression is altered by the subreport.. HTH, Lucian Farid wrote: Hi everybody, I'm using JasperReports 1.2.0 and iReport 1.2.0 also. I h

Re: [jasperreports-questions] Dynamic grouping

2006-03-01 Thread Lucian Chirita
Hi You can create a variable to hold the value used for grouping: $P{grpHeader}.equals("city") ? $F{city} : ($P{grpHeader}.equals("state") ? $F{state} : ... ) and then group by $V{groupVal} Note that specifying a group in a report does not sort the data set, so you will proba

Re: [jasperreports-questions] urgent help needed

2006-03-01 Thread Lucian Chirita
27;t want, I want the image to appear in the detail band alongwith other data.) Please help me resolve this problem. Thanks & Regards, Meenakshi. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Lucian Chirita Sent: Tuesday, February 28, 2006 7:51 PM

Re: [jasperreports-questions] urgent help needed

2006-02-28 Thread Lucian Chirita
Hi printRepeatedValues functionality does not work with delayed evaluation elements. Do you need the image to be evaluated at PART_GROUP time? If not, set evaluation="Now". HTH, Lucian Meenakshi Singh wrote: hi all, I am using JR 1.1.1 & ireport 1.1.0 I am facing a strange problem. I

Re: [jasperreports-questions] crosstab and field access

2006-02-17 Thread Lucian Chirita
Hello There are some discussions on the forum/mailing list regarding the use of multiple values for a crosstab bucket (I guess that this is what you need - to use a field for display and another to order). The engine does not yet support this directly, but it's considered for future releases.

Re: [jasperreports-questions] Setting style at run-time

2006-01-25 Thread Lucian Chirita
See this discussion: http://sourceforge.net/forum/forum.php?thread_id=1422194&forum_id=113530 Regards, Lucian Pushkar wrote: I am using iReport 0.5.3 with JasperReports 1.1.1. I have defined a style in my report using iReport and applied it to some text fields (let's call this style '/col_head

Re: [jasperreports-questions] Dynamic query, parameters question

2006-01-17 Thread Lucian Chirita
For the order by clause, you can use $P!{..} with a String parameter. The parameter passed and default values will be replaced in the query string before sending it to the JDBC driver. The default value should be a valid Java String expression. Regarding the society parameter, check the post

Re: [jasperreports-questions] IS_IGNORE_PAGINATION paramete

2006-01-05 Thread Lucian Chirita
Hi IS_IGNORE_PAGINATION is a fill-time parameter, therefore you'll have to set it when filling the report: params.put(JRParameter.IS_IGNORE_PAGINATION, Boolean.TRUE); JasperFillManager.fillReport(jasperReport, params, ..); Note that since the parameter is used at fill time, the JasperPrint

Re: [jasperreports-questions] report using crosstable

2006-01-04 Thread Lucian Chirita
Hi When you are using a sub dataset, the crosstab's bucket expressions are evaluated in that dataset's context. You are using $F{defect} as bucket expression for the row group, but the dataset does not have such a field. Hence, the error. HTH, Lucian Henrique Oliveira wrote: Hello !! I

Re: [jasperreports-questions] Cross Tab - Alternate Rows

2005-12-22 Thread Lucian Chirita
Hello As you noticed, a crosstab's expression context is different from the report's expression context. The REPORT_COUNT variable does not exist in a crosstab's scope. We are going to create instead crosstab variables holding the row and column indexes. Until then, you can use a crosstab

Re: [jasperreports-questions] Crosstab headers...

2005-12-06 Thread Lucian Chirita
Hi There is no support for row and column group headers yet, but you can achieve some of the things you need by using current functionality: * the "Employee" column header can be created by using a dummy column group having a constant expression (the group would be the first colum

Re: [jasperreports-questions] Jdt-Compiler + Java 1.5

2005-11-22 Thread Lucian Chirita
that some things (like generic types for parameters/variables) are not yet supported. Regards, Lucian Chirita Xavier Frisaye wrote: Thanks again for replying. It works only when i use the 3 parameters related to jdk version : settings.put(CompilerOptions.OPTION_Compl

Re: [jasperreports-questions] Compatibility Problem i_Report_0_2_3 and i_Report-0.5.1

2005-11-17 Thread Lucian Chirita
Hi Your error is due to a bug (#1290957) that was fixed in JasperReports 1.0.3. iReport 0.5.1 comes with JR 1.0.1, you could download JR 1.0.3 and replace it in the iReport lib directory. HTH, Lucian janardhana p wrote: Hi, We have compiled the old report files with i_Report-0.5.1. We

Re: [jasperreports-questions] Crosstab Report

2005-11-15 Thread Lucian Chirita
x27;t understand. Would you please elaborate? Thank you, Meenakshi. -Original Message- From: Lucian Chirita [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 15, 2005 6:24 PM To: [EMAIL PROTECTED] Subject: Re: [jasperreports-questions] Crosstab Report Hi The JR expression field/variable refe

Re: [jasperreports-questions] Crosstab Report

2005-11-15 Thread Lucian Chirita
Hi The JR expression field/variable reference syntax is $F{..} and $V{..}, not $F(..) and $V(..) HTH, Lucian Meenakshi Singh wrote: Hi all, I am designing a crosstab report wherein the column head have the vendor names & row heads have the part names & the crosstab cells have the qty colum

Re: [jasperreports-questions] ClassCastException using Virtualizer

2005-11-09 Thread Lucian Chirita
Hi This was already fixed (see bug #1290957). The fix is included in the >= 1.0.3 releases. Regards, Lucian Quoting Edson Tirelli <[EMAIL PROTECTED]>: >John, > >You got it. Thank you so much! >I did a local build with the changes you suggested and it is working now. > >Is J

Re: [jasperreports-questions] SubReport with JRXmlDataSource.subDataSource

2005-11-01 Thread Lucian Chirita
Hi Marco You have to use subDataSource("/person/address") because subDataSource(..) creates a new document having the current node as root element. HTH, Lucian Jacob,Marco wrote: Hi, I have a main report with a JRXmlDataSource. The XML structure is: