Jump to content

slaisne

Members
  • Posts

    69
  • Joined

  • Last visited

 Content Type 

Forum

Downloads

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Security Advisories

Events

Profiles

Posts posted by slaisne

  1. It's impossible to enter special characters, such as '{' or '}', in JEditTextArea.

    The problem is in org.syntax.jedit.DefaultInputHandler class, line 250.

     

    if(c != KeyEvent.CHAR_UNDEFINED && (modifiers & KeyEvent.ALT_MASK) == 0)

    {

    ...

    }

     

    By modify the test as follow, JEditTextArea work fine.

     

    if(c != KeyEvent.CHAR_UNDEFINED)

    {

    ...

    }

  2. csharbel wrote:

    Also are there any other alternatives.

    Yes.

     

    I'm using in the first time the JRDataSourceProvider, but I've the same problem like you for sub-report. I'm solving it by using an object in order to create JRDataSource for sub-report.

     

    But today, it's more simple with QueryExecutor.

    Create your own QueryExecutor factory, link it with your query language, and JasperReports create the master JRDataSource in the same way for sub-report.

×
×
  • Create New...