How do i get WebDesigner to NOT take over whole html page?
How do i get WebDesigner to NOT take over whole html page?
Using WebDesigner 2014.3.0.0
The StiWebDesigner is set within a div tag but it does not respond to height/width in anyway
So what should i change in the aspx/source code(c#) to let the StiWebDesigner show up partial instead of the whole page?
The StiWebDesigner is set within a div tag but it does not respond to height/width in anyway
So what should i change in the aspx/source code(c#) to let the StiWebDesigner show up partial instead of the whole page?
Re: How do i get WebDesigner to NOT take over whole html pag
Hello.
Please, send us a sample project which reproduces the issue with more detailed description.
Thank you.
Please, send us a sample project which reproduces the issue with more detailed description.
Thank you.
Re: How do i get WebDesigner to NOT take over whole html pag
There is nothing really to add to sample project, I just want to have code below in .aspx file and be able to see Hello World and designer below it on the page. Is that possible? So far designer take the whole web page no matter what the mark-up is.
Code: Select all
<h1>Hello World</h1>
<div id="ReportView" class="ReportContents" runat="server">
<cc1:StiWebDesigner ID="StiWebDesigner1" runat="server" Localization="en" ShowWizardAfterLoad="true" OnSaveReport="StiWebDesigner1_SaveReport" />
</div>
Re: How do i get WebDesigner to NOT take over whole html pag
Hello,
Please set the Visible property of the WebDesigner component to true:
Also use the next code for assign report:
Thank you.
Please set the Visible property of the WebDesigner component to true:
Code: Select all
<cc1:StiWebDesigner ID="StiWebDesigner1" runat="server" Localization="en" ShowWizardAfterLoad="true" OnSaveReport="StiWebDesigner1_SaveReport" Visible="True" />
Code: Select all
StiWebDesigner1.Report = report;
Re: How do i get WebDesigner to NOT take over whole html pag
I've added Visible="True" to designer tag, but I still get designer taking over full page instead of showing up under "Hello World" text in the example above. Any other property I need to set to make sure designer does not take the full page but shows below my header?
Re: How do i get WebDesigner to NOT take over whole html pag
Hello,
Please see the sample in the attachment.
Thank you.
Please see the sample in the attachment.
Thank you.
- Attachments
-
- WebDesigner.zip
- (484.29 KiB) Downloaded 204 times
Re: How do i get WebDesigner to NOT take over whole html pag
Thanks for the sample! I do get report loaded and "Hello World" showing in your sample, but on my page in my project report designer still takes the whole page even if I completely copy it's tag with Height and Width attributes from your Default.aspx page. Any hints what I may be doing wrong?
Re: How do i get WebDesigner to NOT take over whole html pag
Hello.
It seems that you use Design() method. You should not use it if you don't need to get the Designer on the whole page.
If it is does not solve your issue, please, send us a sample project with data that reproduces the issue.
Also we need to see a screen-shots of the browser.
Thank you.
It seems that you use Design() method. You should not use it if you don't need to get the Designer on the whole page.
If it is does not solve your issue, please, send us a sample project with data that reproduces the issue.
Also we need to see a screen-shots of the browser.
Thank you.