Globalization properties
Globalization properties
Is it possible to inform wchich columns are available in globalization settings?
I'd like to hide Tag, Hiperlink and Tooltip, if possible.
Second, where and when to call StiReport.LocalizeReport in MVC designer? GetReportSnapshotViewer, etc...
TIA
I'd like to hide Tag, Hiperlink and Tooltip, if possible.
Second, where and when to call StiReport.LocalizeReport in MVC designer? GetReportSnapshotViewer, etc...
TIA
Re: Globalization properties
Hello.
Thank you.
You could find all available properties in the Globalization Editor. It's impossible to hide there any property.Werlang wrote:Is it possible to inform wchich columns are available in globalization settings?
I'd like to hide Tag, Hiperlink and Tooltip, if possible.
Could you specify which MVC Designer do you use? HTML5 or Flash Designer?Werlang wrote:Second, where and when to call StiReport.LocalizeReport in MVC designer? GetReportSnapshotViewer, etc...
Thank you.
Re: Globalization properties
HI.
Ok.
I'm using Flash designer.
Ok.
I'm using Flash designer.
Re: Globalization properties
Hello.
You could try to use next code to localize report:
Thank you.
You could try to use next code to localize report:
Code: Select all
public ActionResult GetReportSnapshotResult()
{
StiReport report = StiMvcViewerFx.GetReportObject(this.Request);
report.LocalizeReport(new CultureInfo("en-EN"));
return StiMvcDesigner.GetReportSnapshotResult(this.Request, report);
}
Re: Globalization properties
LocalizeReport should be called before or after RegBusinessObject and SynchronizeBusinessObjects?
Re: Globalization properties
Hello.
It's no matter.
Do you have any problem with it?
Thank you.
It's no matter.
Do you have any problem with it?
Thank you.
Re: Globalization properties
Hello
Not at all.
I'm just trying to understand hot it works. For the sake of performance I believe it should be done only once after loading report template, instead every time that a page is requested.
Not at all.
I'm just trying to understand hot it works. For the sake of performance I believe it should be done only once after loading report template, instead every time that a page is requested.
Re: Globalization properties
Hello.
The LocalizeReport property could be set just once. You don't need to do it for each page.
Thank you.
The LocalizeReport property could be set just once. You don't need to do it for each page.
Thank you.