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
Mobile parameters/variables
- ChrisCookDev
- Posts: 41
- Joined: Sun May 20, 2012 7:07 pm
- Location: UK
Mobile parameters/variables
Chris Cook :: Software Development Manager :: www.genesisit.co.uk
Design, Develop, Deliver! :: App development for smartphones, tablets, the desktop and the web
Design, Develop, Deliver! :: App development for smartphones, tablets, the desktop and the web
Re: Mobile parameters/variables
Hello, Chris.
Here is a sample code for this before compilation:or after compilation:
We are working on parameters panel in report viewer but couldn't write about terms now.
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.
Thank you.
You could pass the parameters from code to the report.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.
Here is a sample code for this before compilation:
Code: Select all
report.Dictionary.Variables["Variable1"].Value = yourCancatenatedString;
report.Compile();
report.Render(false);
Code: Select all
report.Compile();
report["Variable1"] = yourCancatenatedString;
report.Render(false);
Usually we don't share our road map.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?
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.
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.ChrisCookDev wrote:Finally, do you have any plans to introduce native versions of Stimulsoft for iOS/Android?
Thank you.