Setting a variable for use in preview in mobile designe
Posted: Wed Sep 02, 2015 4:42 pm
Hello,
I have a report that has a variable called Param with default value of "123", and report just shows value of the variable Param on the page.
In my code before sending report to mobile report designer I'm setting the value to "1000".
But when I do a preview from mobile designer - I see the value 123 and not 1000.
What is correct way to set the value of the variable so it gets picked up by the designer?
I'm using Ultimate 2015.1 version.
Thanks!
I have a report that has a variable called Param with default value of "123", and report just shows value of the variable Param on the page.
In my code before sending report to mobile report designer I'm setting the value to "1000".
Code: Select all
stiReport1["Param"] = "1000";
StiMobileDesigner1.Report = stiReport1;
What is correct way to set the value of the variable so it gets picked up by the designer?
I'm using Ultimate 2015.1 version.
Thanks!