Mobile parameters/variables

Stimulsoft Reports.WEB discussion
Post Reply
User avatar
ChrisCookDev
Posts: 41
Joined: Sun May 20, 2012 7:07 pm
Location: UK

Mobile parameters/variables

Post by ChrisCookDev »

I'm currently evaluating the mobile version of your reporting suite and wanted to check if it supports the passing of parameters/variables into the report.

If not, please can you let me know if this is a planned feature for a future version? Also, if it is, do you have a rough road map for when it will be introduced?

Finally, do you have any plans to introduce native versions of Stimulsoft for iOS/Android?

Thanks in advance
Chris Cook :: Software Development Manager :: www.genesisit.co.uk
Design, Develop, Deliver! :: App development for smartphones, tablets, the desktop and the web
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Mobile parameters/variables

Post by HighAley »

Hello, Chris.
ChrisCookDev wrote:I'm currently evaluating the mobile version of your reporting suite and wanted to check if it supports the passing of parameters/variables into the report.
You could pass the parameters from code to the report.
Here is a sample code for this before compilation:

Code: Select all

report.Dictionary.Variables["Variable1"].Value = yourCancatenatedString;
report.Compile();
report.Render(false);
or after compilation:

Code: Select all

report.Compile();
report["Variable1"] = yourCancatenatedString;
report.Render(false);
We are working on parameters panel in report viewer but couldn't write about terms now.
ChrisCookDev wrote:If not, please can you let me know if this is a planned feature for a future version? Also, if it is, do you have a rough road map for when it will be introduced?
Usually we don't share our road map.
Now we are working on report server where the client application could be implemented for iOS/Android platform.
Our mobile report viewer and designer is made in accordance with HTML5 specification and was tested on the Apple and Android devices.
What features would you like to see in our product.
ChrisCookDev wrote:Finally, do you have any plans to introduce native versions of Stimulsoft for iOS/Android?
Now we are deliberating the possibility of development of iOS/Android native applications. This application will have dashboard, let you administrate report server and view reports.

Thank you.
Post Reply