These forums are read-only and considered to be an archive. Please use the new Community for future interaction and posts.

Scroll in pages with FileVista control

Hi everyone,


i'm using FileVista control v1.6 in asp.net 2.0 and noticed that pages with the FileVista control have a vertical and horizontal scrollbars.


The design of the page don't stretch contents beyond the specified width or height.


Does anyone know why?
Nuno Santos 12/11/2008 9:15 AM
I understand that you want to stretch FileVistaConrol to the entire page.
If you want the control to fit the containing html element, set the property

Style="width: auto; height: auto"

If you want the control to fit the entire browser window set the property

Fullscreen = "true"
Cem Alacayir 12/15/2008 8:07 PM
Hi Cem,

thanks for the reply, but i don't want to stretch FileVistaControl to the entire page.

I have a html element with a fixed size and FileVista inside that element, but the scrolls still appear.


I see that nobody report this behavior. 

Thanks again.
Nuno Santos 12/16/2008 2:49 AM
Please send me a screenshot.
Cem Alacayir 12/16/2008 7:30 AM
Hi Cem,

i send an email with the screenshot as well the html of the page.



Thanks,
Nuno Santos 12/16/2008 9:16 AM
Ok,
Please include the following css code in <head> section of your host aspx page:

<style type="text/css">

HTML, BODY
{
                overflow: hidden;
}

</style>

This will remove the scrollbars.
Cem Alacayir 12/16/2008 1:18 PM
Hi Cem,


thanks for the answer to this.
Nuno Santos 12/17/2008 3:17 AM