Search found 363 matches

by Vadim
Tue Feb 11, 2014 11:40 am
Forum: Stimulsoft Reports.JAVA
Topic: Passing group condition dynamically
Replies: 5
Views: 3927

Re: Passing group condition dynamically

Hello.
Wich component do you use Flex or Web ?
prakashn wrote:Aleksey,

I am using Stimulsoft Report Fx for Java. For Group Header Band, I need to pass the columns dynamically, i.e, from UI.

How can I achieve this?

Thanks,
Prakash
by Vadim
Thu Jan 30, 2014 11:56 am
Forum: Stimulsoft Reports.JAVA
Topic: Export Report without opening Viewer in web application
Replies: 6
Views: 4705

Re: Export Report without opening Viewer in web application

Hello. You must render .mrt file (see our Samples forlder), for example: StiReport renderReport = StiSerializeManager.deserializeReport(new File("Reports/SimpleList.mrt")); //add neccessary databases renderReport.getDictionary().getDatabases().add(new StiXmlDatabase("Demo", "...
by Vadim
Wed Jan 29, 2014 7:52 am
Forum: Stimulsoft Reports.JAVA
Topic: Export Report without opening Viewer in web application
Replies: 6
Views: 4705

Re: Export Report without opening Viewer in web application

Hello. For direct open file in browser you can use servlet that generate with custom settings & return file (example for PDF file): protected void doGet(HttpServletRequest request, HttpServletResponse response) { try { StiDocument document = StiSerializeManager.deserializeDocument(new File( &quo...