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

enoc22

Members
  • Posts

    7
  • Joined

  • Last visited

enoc22'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. Anything? I know this is possible, and tons of people have asked how, But i never see any answers on how? is this some secret only paid members get?
  2. Hi All, I've been trying to create an input control single select list(drop down) for some of my reports. I've spent hours trying to figure this out and sadly I'm stumped. I don't have a clue where to go from here. I have my reports on a Linux server running Jasper Server, I'm creating my reports with iReports, what I'm trying to accomplish is when a report comes up i want to have a simple drop down list to select one of two options(Ascending or Descending), when one of those options is selected it will send the selected to a parameter $P{sort} which will put either ASC or DESC into the mysql. Has anyone done something similar successfully? Thanks a million Oliver
  3. Hi All, I'm still fairly new to iReports and am running into a problem. I have a sales report that needs to have an option to select sales from a certain store. in the sql i have 'Store = $P{type}' where $P{type} can be either 1 or 2 or 3 depending on which store we need the report from. my problem is i can't figure out how to create a input control to have either a drop down or a radio select to have 1, 2 or 3 to select from, i have the parameter as a string, with a default of 1, when i run the report is just shows 1 as the only option, i'm at my wits end trying to figure this out. Any help would be much apreciated. Thanks Oliver
  4. Hi, I was wondering if jasperserver could be launched on google apps? I would like to use jasperserver and have it availible to others that are not on my local network. I am still very new to the prgramming world so any help or suggestions would be much appreciated. Thanks Oliver
  5. Hi, I just installed JapserServer and it is looking Great, expcept for one thing. In the manual it shows that after you log in it has buttons for the scheduler and to create a reports.etc I cannot see those buttons when i log in. Am i missing something, forget to install or start something. Any help would be greatly appreciated i also attached a screen shot. Thanks Oliver
  6. Hey Giulio, That was exactly what i needed. Thanks a million Oliver
  7. Hi all, I am very new to iReports but i Love it. I was creating a report and noticed that the resulting preview details where double spaced i.e. a line of data then a blank line then a line of data. Is there anyways to remove this? Any help would be Much appreciated Thanks Oliver Code:<?xml version="1.0" encoding="UTF-8"?><jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="report5" language="groovy" pageWidth="555" pageHeight="802" columnWidth="555" leftMargin="0" rightMargin="0" topMargin="0" bottomMargin="0" isIgnorePagination="true"> <subDataset name="dataset1"/> <queryString> <![CDATA[sELECT sales_order.`increment_id` AS sales_order_increment_id, sales_order.`created_at` AS sales_order_created_at, sales_order.`grand_total` AS sales_order_grand_totalFROM `sales_order`]]> </queryString> <field name="sales_order_increment_id" class="java.lang.String"> <fieldDescription><![CDATA[]]></fieldDescription> </field> <field name="sales_order_created_at" class="java.sql.Timestamp"> <fieldDescription><![CDATA[]]></fieldDescription> </field> <field name="sales_order_grand_total" class="java.math.BigDecimal"> <fieldDescription><![CDATA[]]></fieldDescription> </field> <variable name="sales_order_increment_id_1" class="java.lang.Integer" resetType="Page" calculation="Count"> <variableExpression><![CDATA[$F{sales_order_increment_id}]]></variableExpression> </variable> <background> <band splitType="Stretch"/> </background> <title> <band height="26" splitType="Stretch"/> </title> <pageHeader> <band height="35" splitType="Stretch"/> </pageHeader> <columnHeader> <band height="19" splitType="Stretch"/> </columnHeader> <detail> <band height="20" splitType="Prevent"> <textField> <reportElement x="0" y="0" width="174" height="20"/> <textElement/> <textFieldExpression class="java.lang.String"><![CDATA[$F{sales_order_increment_id}]]></textFieldExpression> </textField> <textField> <reportElement x="475" y="0" width="80" height="20"/> <textElement/> <textFieldExpression class="java.lang.String"><![CDATA[$F{sales_order_created_at}]]></textFieldExpression> </textField> <textField> <reportElement x="250" y="0" width="100" height="20"/> <textElement/> <textFieldExpression class="java.lang.String"><![CDATA[$F{sales_order_grand_total}]]></textFieldExpression> </textField> </band> </detail> <columnFooter> <band height="29" splitType="Stretch"/> </columnFooter> <pageFooter> <band height="54" splitType="Stretch"/> </pageFooter> <summary> <band height="42" splitType="Stretch"/> </summary></jasperReport>
×
×
  • Create New...