Posts by Julio Cesar da Silva Barros • 455 points
30 posts
-
1
votes1
answer742
viewsA: How to implement Jasperreports and iReport( or Jaspersoft) in a reporting system?
Talk, man! All right? Both are libraries for you to generate reports in java, Jaspersoft is just an interface for you to develop the reports, especially in this case you are using a different IDE.…
-
1
votes1
answer289
viewsQ: Edit html+php+jquery items
I have to edit a record series, the same are listed in a table (see): This is the form of the image above: <div class="control-group"> <table class="table table-bordered "> <thead>…
-
1
votes2
answers16125
viewsA: Image gallery (HTML/CSS)
Dude, there’s a lot of HTML/CSS template ready, it only takes you to implode your page’s php. Here’s an example: Galeria 1 http://www.free-css.com/free-css-templates/page2/photobusiness Galeria 2…
-
0
votes1
answer465
viewsQ: Image . png in Jasper report
I’m starting in PHP and to finish my first system I have to make a report, it has some logos and watermarks, I’m using Jasperdesigner to generate XML for the lib Phpjasperxml, but when I have the…
-
1
votes2
answers1272
viewsQ: Problems with UTF-8 in PHP project
I am learning PHP and I am facing some problems with the special characters, see: the funny thing is that in the table items it displays the accent and the special characters. And yes, I’ve tried…
-
0
votes1
answer169
viewsA: How to make condition in iReport if there is no one of the values
You can do it this way: ${nome_pai}.equals("")?(${nome_mae}.equals("")?"":${nome_mae}): ${nome_pai}+(${nome_mae}.equals("")?"":" e de "+${nome_mae}) Explaining... The first part: If the father’s…
-
1
votes1
answer153
viewsA: Is it possible to create empty table with ireport?
Dude, the lines are dynamic, they appear as you feed your table, have more details. What you can do is create a fixed table with label's empty and with visible borders. and the fields that will…
ireportanswered Julio Cesar da Silva Barros 455 -
1
votes1
answer238
viewsA: DANFE in Jasper - problem with additional data field
Dude, here’s the thing, Page Footer only prints once on each page, so your Additional Data breaks from page you have two options: either you put your Additional Data field into a new Detail, or you…
-
0
votes1
answer1187
viewsA: How do I place a record on a new page using Jasperreports if it overflows the last page?
Select the band that is the fields that you do not intend to break line, and go to the tab of Properties you go on Advanced and mark the option with true Print In First Whole Band it says that your…
-
0
votes2
answers1219
viewsA: How to pass object list to Subreport?
Dude, if it’s any help yet, I made this tutorial for what you need: Report Tutorial with subelatories in this case I had a subreport within a list, plus if this in your main report, the steps are…
-
1
votes1
answer764
viewsA: how to print a text on multiple pages using Jasper Reports
The textfield in ireport as much as in Jaspersoft has a checkbox: Stretch With Overflow, mark him. With it marked you can leave the textfield of the standard size of the others, it will expand…
-
1
votes1
answer157
viewsQ: Query Mysql confusing results
I have to make a mysql query through a Java method. This is the sql I did to test if it works: select * from servicos S, clientes C, motores M where C.nome = "Claudio Fernando Pires" group by…
-
2
votes1
answer90
viewsQ: Search in mysql database
I have to do a search in a table, I have to pass up to 3 parameters to filter my search, this is my method: public List<Motores> pesquisaMotores(String serie, String marca, String modelo) {…
-
1
votes2
answers2804
viewsA: Generate Ireport / Jasper Report containing 2 pages (with 3 columns each) on the same sheet in landscape mode
In this case I would do the following: In the landscape A4 would put 2 SubReports with 400 pixels each properly configured the leftovers of the size, and in the middle vi that has a vertical line,…
-
0
votes2
answers398
viewsA: Dynamic size Pagefooter on iReport
Hello, man, my tip is for you to create Groups according to each line you have to display (to get more organized) or Details being able to keep his PageFooter. You only need to add an expression in…
-
0
votes2
answers2205
viewsQ: Nothing to migrate
Hello, I’m starting in php plus the Laravel framework, and my doubt is about the command php artisan migrate to migrate a table in the database. When I executed the command for the first time it…
-
0
votes2
answers1096
viewsQ: Dynamic Color in Textfield in Jasper Reports
I want to change the color of the textfield according to the value of it, I found several tutorials that say to create a style and apply to textfield, you have to mark a "Styled text" option that I…
-
1
votes0
answers40
viewsQ: Chart problems on Jasperreports
I have to make a report that has two pie charts, what happens is that my first Chart appears without problems, the second no, and I have already checked that the lists, which are sent via parameter,…
-
0
votes1
answer278
viewsQ: Addition of Chart label formatting mask in Jasperreport
I have a chart of lines and on the X axis it displays a series of dates. What I want to do is display date in the following pattern: dd/MM/yyyy because the same one is displaying in the format:…
-
2
votes0
answers75
viewsQ: Set width of Jdialog according to the size of the sums of the columns of a table
I have the column width sum and I need to set this value so that it does not hide parts of the columns and decrease the window. Any suggestions? I created a method that returns the sum of column…
-
0
votes1
answer175
viewsQ: Label’s and/or Textfields do not appear in subreports in Jasperreports
I have a report with sub-report in jasperreports, the problem is that when I run the report it is not displaying the contents of the Abels or textfields that I put in the sub-report, someone has…
-
1
votes1
answer398
viewsA: Jaspersoft Studio 6.0.3 creation of a table in which each cell is a query
Good morning, look how little I worked with crosstable and table on Jasper, use version 5.6 it works the same way as the lists, Charts and subreports. For use you create a query for the item (list,…
-
0
votes1
answer44
viewsA: Jasper report complaining of non-existent property
[SOLVED] It was the entity of my research that was totally wrong, ai when ordered to generate the report the same caught a . totally different Jasper of which I prepared. Thanks!
-
0
votes1
answer44
viewsQ: Jasper report complaining of non-existent property
[RESOLVED] Guys, I have a report and I come across the following situation: java.lang.NoSuchMethodException: Unknown property 'acompanhamentoPorObra' on class 'class…
-
2
votes1
answer308
viewsA: Font size in jasperreport
The problem is that missing . jar of the font in question in your project, looks for a . jar of your liking and adds in the library of your project!
jasper-reportsanswered Julio Cesar da Silva Barros 455 -
2
votes2
answers1082
viewsA: Report does not obey formatting when exported to PDF
Man, these times I went through a similar problem, what happened was that the size and sources of the report did not configure in the system, try to look for some . jar with the type of font you…
-
1
votes1
answer738
viewsA: Pass List to a sub report and call it in main report
Good morning! You have to create a List parameter in your report, it must have the same name as the parameter you are sending in code. Example: filtro.put("listaDados", lista); Create "list" in your…
-
1
votes1
answer1041
viewsA: How to create a report in Jasperreports (Jasper Studio) that has dynamic columns?
Hello, just today I made a report with dynamic columns. Only that they are not so dynamic, you will create your report, if it is in it where you will display the data brought from the database, you…
jasper-reportsanswered Julio Cesar da Silva Barros 455 -
2
votes1
answer208
viewsA: How do I send a data source list to a sub report and call that sub report in my main report
Hi, it’s not that complicated. For the list you create a parameter in code and create one to send the directory of your sub-report. So, at the time you put your sub-report in the main report and…
-
1
votes1
answer288
viewsA: Application for when I pass a List per parameter to a Sub report
Dude, this usually doesn’t work very well, work already has a little time with Jasper and he is very troublesome for these parts of parameter passage, mainly for objects, the tip I’ll give you is…