Answered by:
DIsplay Scrollbars on ISV Page

Question
-
Hi,
i just created a webpage and deployed under ISV folder.
Every thing works fine but scrollbars are showing when the page is greater than the display area, i tried in different ways but doesnt work.
Help Me
Thanks in AdvanceSaturday, February 27, 2010 5:35 AM
Answers
-
Thanks for the reply Vinoth B
with your code i made some modifications and it worked.
<html xmlns="http://www.w3.org/1999/xhtml" ><head id="Head1" runat="server">
<title>CRM Report Viewer</title>
</head>
<body scroll="yes" style="margin:0px 0px 0px 0px; padding:0px 0px 0px 0px;">
<table cellspacing="0" cellpadding="0" width="100%" height="100%">
<tr>
<td>
<form id="form1" runat="server">
<My Controls>
</form>
</td>
</tr>
</table>
</body>
</html>- Marked as answer by crm40 Tuesday, March 2, 2010 11:31 AM
Tuesday, March 2, 2010 11:31 AM
All replies
-
if you want the scroll bars then put your page in the iframe and then use the iframethe default functionality will not show you the scroll barsThanksvarun kumar
- Proposed as answer by VarunKumar17 Thursday, October 7, 2010 8:35 AM
Saturday, February 27, 2010 7:03 AM -
If your displaying the ISV in the IFRAME on a form. In the form editor, open the properties of the IFRAME, select the Formatting tab and change the scrolling drop down.Let us know if this helps
@_Simon_Jackson http://www.simonjackson.info/ MBCS MCBMSS MCBMSP MCSD MCDBA MCAD MCSASunday, February 28, 2010 9:45 PM -
Hi ,
Try this .Expand the crm form to maximum and put ur iframe in a separate Tab in the form , so that ur iframe will get a bigger space tht does not need scrolling
Thanks, AarchMonday, March 1, 2010 6:38 AM -
Hi all,
Im not using the webpage in the form,Im using the webpage as a subarea in the navigation pane by modifying sitemap,like a subarea 'Test' above 'activities' in 'Workplace'Tuesday, March 2, 2010 5:07 AM -
Hi
By default the scroll bars will not be available when the link is made.
<SubArea Id=”nav_home” ResourceId=”Homepage” Title=”Home” Icon=”/_imgs/area/18_home.gif” Url=”http://localhost:5555/home.htm” Client=”Web” Description=”Home Page” />
If this didnt help, use IFRAME to load your custom page. That means your navigation link is link to your IFRAME html page.
<html style="height: 100%;">
<head>
<title>Untitled Page</title>
</head>
<body style="width:100%; height:100%;" >
<iframe id="frm" src="Home.aspx" frameborder="0" height="100%" width="100%" scrolling="no">
</iframe>
</body>
</html>
Create a html page using the code above. Then change the “src” to your custom page url.
Regards
Vinoth- Proposed as answer by VarunKumar17 Thursday, October 7, 2010 8:35 AM
Tuesday, March 2, 2010 5:28 AM -
Thanks for the reply Vinoth B
with your code i made some modifications and it worked.
<html xmlns="http://www.w3.org/1999/xhtml" ><head id="Head1" runat="server">
<title>CRM Report Viewer</title>
</head>
<body scroll="yes" style="margin:0px 0px 0px 0px; padding:0px 0px 0px 0px;">
<table cellspacing="0" cellpadding="0" width="100%" height="100%">
<tr>
<td>
<form id="form1" runat="server">
<My Controls>
</form>
</td>
</tr>
</table>
</body>
</html>- Marked as answer by crm40 Tuesday, March 2, 2010 11:31 AM
Tuesday, March 2, 2010 11:31 AM