Rank: Newbie Groups: Member
Joined: 12/7/2015 Posts: 9
|
Hi,
I want to use multiple web views but it seems that a web control can have only one web view. I don't want to use multiple web control for showing several web views. Is this only way using web controls to show multiple web views? Do you have any suggestion?
My UI should show web view which is on the other web view. These web views indicate different URL. But It seems like one web page.
And.. how can I disable scroll bar? I don't want to show scroll bar.
Thanks.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
Hi,
Each WebControl is associated to a single WebView. If you want to have multiple WebViews, you must have multiple WebControls.
There is no built-in support to disable scrollbars. You can try to set body.style.overflow = "hidden" and see if that works.
Thanks!
|
Rank: Newbie Groups: Member
Joined: 12/7/2015 Posts: 9
|
Thanks!
|