The problem of Components

Stimulsoft Reports.JAVA discussion
heqichao
Posts: 113
Joined: Fri Mar 04, 2016 9:02 am

The problem of Components

Post by heqichao »

Hello , how can I use cross-table on the web designer ?
Image

and how can I design the report like this
Image
and the row number is not fixed.
Thanks
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: The problem of Components

Post by HighAley »

Hello.

Sorry, the Cross-tab component is not available at this moment.
We are working on it and it will be available in one of our next builds.

Thank you.
heqichao
Posts: 113
Joined: Fri Mar 04, 2016 9:02 am

Re: The problem of Components

Post by heqichao »

Hello,I set the variable the type of list,but how to set the single selection?
Image
Image
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Re: The problem of Components

Post by Alex K. »

Hello,

Please try to set the 'Value" type for the variable instead a "List".

Thank you.
heqichao
Posts: 113
Joined: Fri Mar 04, 2016 9:02 am

Re: The problem of Components

Post by heqichao »

Thanks!
and I have other problem, I have used stimulsoft-2016.1.13-trial.jar but it throw the error on the html like this
Image

and it is my code

Code: Select all

<?xml version="1.0" encoding="UTF-8" ?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/webapp_2_5.xsd"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee"
	id="WebApp_ID" version="2.5">
	<display-name>stimulsoft_webdesigner</display-name>
	<welcome-file-list>
		<welcome-file>index.jsp</welcome-file>
	</welcome-file-list>
	<!-- configuration, this parameter indicates the main application directory -->
	<servlet>
		<servlet-name>StimulsoftResource</servlet-name>
		<servlet-class>com.stimulsoft.web.servlet.StiWebResourceServlet</servlet-class>
	</servlet>
	<servlet-mapping>
		<servlet-name>StimulsoftResource</servlet-name>
		<url-pattern>/stimulsoft_web_resource/*</url-pattern>
	</servlet-mapping>
	<servlet>
		<servlet-name>StimulsoftDesignerAction</servlet-name>
		<servlet-class>com.stimulsoft.webdesigner.servlet.StiWebDesignerActionServlet</servlet-class>
	</servlet>
	<servlet-mapping>
		<servlet-name>StimulsoftDesignerAction</servlet-name>
		<url-pattern>/stimulsoft_webdesigner_action</url-pattern>
	</servlet-mapping>
</web-app>
Vadim
Posts: 363
Joined: Tue Apr 23, 2013 11:23 am

Re: The problem of Components

Post by Vadim »

Hello.
Please remove <stiwebdesigner:resources /> from jsp page.
heqichao
Posts: 113
Joined: Fri Mar 04, 2016 9:02 am

Re: The problem of Components

Post by heqichao »

thanks
Vadim
Posts: 363
Joined: Tue Apr 23, 2013 11:23 am

Re: The problem of Components

Post by Vadim »

Hello.
Let us know if you need any additional help.
Thank you.
heqichao
Posts: 113
Joined: Fri Mar 04, 2016 9:02 am

Re: The problem of Components

Post by heqichao »

I have a question about export setting.
It is my code

Code: Select all

  StiWebViewerOptions options = new StiWebViewerOptions();
	    options.getExports().getDefaultSettings().exportToPdf.setUseUnicode(true);
	    options.getExports().getDefaultSettings().exportToPdf.setOpenAfterExport(true);
	    options.getExports().getDefaultSettings().exportToPdf.setImageQuality(80);
	    options.getExports().getDefaultSettings().exportToPdf.setImageResolution(100);
the ImageResolution and ImageQuality is workable, but the UseUnicode and OpenAfterExport is not working
Vadim
Posts: 363
Joined: Tue Apr 23, 2013 11:23 am

Re: The problem of Components

Post by Vadim »

Hello.
OpenAfterExport works only with Swing Viewer component.
UseUnicode - works, what is wrong?
Post Reply