Hello Support,
We have an issue while exporting a report as an html page. Tables, rows and cells have all a fix width an height.
Export-Sample: <div class="s47e028e2" style="left:165.35pt;top:21753.54pt;width:129.93pt;height:14.77pt;">xxxxxxxx</div>
The result of this, it ist not able to scale the report in the browser window. Minimize or maximize the browser has no impact of the report layout.
Is there a chance to change this export setting?
Greets
oolener
Export to HTML/HTML5
Re: Export to HTML/HTML5
Hello.
Do you want to scale report with size of browser window?
Unfortunately, it's impossible to export such report due technological restrictions.
Thank you.
Do you want to scale report with size of browser window?
Unfortunately, it's impossible to export such report due technological restrictions.
Thank you.
Re: Export to HTML/HTML5
Hello Aleksey,
thanks for the answer.
But why do you render fix sizes of the control to the exported html files?
If you use flow layout with "DIV" Tags it is possible to render a scaleable html page.
Is there a chance to catch an event in the HtmlExportService, or anywhere else, to customize the final html content?
Greets
thanks for the answer.
But why do you render fix sizes of the control to the exported html files?
If you use flow layout with "DIV" Tags it is possible to render a scaleable html page.
Is there a chance to catch an event in the HtmlExportService, or anywhere else, to customize the final html content?
Greets
Re: Export to HTML/HTML5
Hello.
Thank you.
While scaling the HTML document you can break layout of the document so we should set the strict size of components.oolener wrote:But why do you render fix sizes of the control to the exported html files?
If you use flow layout with "DIV" Tags it is possible to render a scaleable html page.
You could use ExportDocument() method to export report into a stream and them do any changes with it.oolener wrote:Is there a chance to catch an event in the HtmlExportService, or anywhere else, to customize the final html content?
Thank you.